frontblocks
Last commit date
.wordpress-playground
1 month ago
assets
1 month ago
includes
1 month ago
vendor
1 month ago
.phplint.yml
1 month ago
frontblocks.php
1 month ago
postcss.config.js
1 month ago
readme.md
1 month ago
readme.txt
1 month 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 |