advanced-ads
Last commit date
admin
1 year ago
assets
1 year ago
classes
1 year ago
deprecated
1 year ago
includes
1 year ago
languages
1 year ago
modules
1 year ago
packages
1 year ago
public
1 year ago
upgrades
1 year ago
views
1 year ago
LICENSE.txt
12 years ago
advanced-ads.php
1 year ago
codeception.yml
1 year ago
index.php
2 years ago
postcss.config.js
2 years ago
readme.txt
1 year ago
tailwind.config.common.js
1 year ago
tailwind.config.js
1 year ago
tailwind.config.onboarding.js
1 year ago
webpack.mix.js
1 year ago
wpml-config.xml
7 years ago
tailwind.config.common.js
20 lines
| 1 | /** @type {import('tailwindcss').Config} */ |
| 2 | module.exports = { |
| 3 | content: [ |
| 4 | './includes/**/*.php', |
| 5 | './views/**/*.php', |
| 6 | './modules/one-click/modules/adstxt/class-detector.php', |
| 7 | ], |
| 8 | theme: { |
| 9 | extend: { |
| 10 | colors: { |
| 11 | wordpress: '#2271b1', |
| 12 | primary: '#0074a2', |
| 13 | }, |
| 14 | borderColor: { |
| 15 | advads: '#b5bfc9', |
| 16 | }, |
| 17 | }, |
| 18 | }, |
| 19 | }; |
| 20 |