PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / trunk
FrontBlocks for Gutenberg/GeneratePress vtrunk
trunk 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 0.2.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 ci-artifacts
frontblocks / tailwind.config.js
frontblocks Last commit date
.wordpress-playground 1 month ago assets 1 week ago includes 1 week ago vendor 1 week ago .phplint.yml 1 month ago frontblocks.php 1 week ago postcss.config.js 1 month ago readme.md 1 month ago readme.txt 1 week ago tailwind.config.js 1 month ago
tailwind.config.js
31 lines
1 /** @type {import('tailwindcss').Config} */
2 module.exports = {
3 content: [
4 './includes/Admin/**/*.php',
5 './assets/admin/**/*.{js,jsx}',
6 ],
7 theme: {
8 extend: {
9 colors: {
10 primary: {
11 50: '#f0f1fe',
12 100: '#e4e6fd',
13 200: '#cdd0fb',
14 300: '#acb0f8',
15 400: '#8a8ff5',
16 500: '#687df9',
17 600: '#5565ed',
18 700: '#4651d9',
19 800: '#3941af',
20 900: '#323a8a',
21 },
22 },
23 },
24 },
25 plugins: [],
26 // Prefix for Tailwind classes to avoid conflicts with WordPress admin.
27 prefix: 'tw-',
28 important: '.frbl-settings-wrapper',
29 };
30
31