header-footer-elementor
Last commit date
admin
1 year ago
assets
1 year ago
build
1 year ago
inc
1 year ago
languages
1 year ago
themes
1 year ago
header-footer-elementor.php
1 year ago
postcss.config.js
1 year ago
readme.txt
1 year ago
tailwind.config.js
1 year ago
wpml-config.xml
1 year ago
tailwind.config.js
64 lines
| 1 | const withTW = require("@bsf/force-ui/withTW"); |
| 2 | // figma colr |
| 3 | module.exports = withTW({ |
| 4 | content: ["./src/**/*.{js, jsx}"], |
| 5 | theme: { |
| 6 | extend: { |
| 7 | colors: { |
| 8 | "button-primary": "#2563EB", |
| 9 | "button-primary-hover": "#1D4ED8", |
| 10 | |
| 11 | "brand-primary-600": "#9333EA", |
| 12 | "brand-800": "#6B21A8", |
| 13 | "brand-50": "#EFF6FF", |
| 14 | |
| 15 | "border-interactive": "#2563EB", |
| 16 | "border-subtle": "#E5E7EB", |
| 17 | |
| 18 | focus: "#9333EA", |
| 19 | "focus-border": "#D8B4FE", |
| 20 | |
| 21 | "toggle-on": "#6B21A8", |
| 22 | "toggle-on-border": "#C084FC", |
| 23 | "toggle-on-hover": "#A855F7", |
| 24 | |
| 25 | "background-primary": "#FFFFFF", |
| 26 | "background-secondary": "#F3F4F6", |
| 27 | |
| 28 | "field-border": "#E5E7EB", |
| 29 | "field-label": "#111827", |
| 30 | "field-primary-background": "#F9FAFB", |
| 31 | "field-secondary-background": "#FFFFFF", |
| 32 | |
| 33 | "icon-primary": "#111827", |
| 34 | "icon-secondary": "#4B5563", |
| 35 | |
| 36 | "background-gray": "#F9FAFB", |
| 37 | }, |
| 38 | fontSize: { |
| 39 | xxs: "0.6875rem", // 11px |
| 40 | }, |
| 41 | lineHeight: { |
| 42 | 2.6: "0.6875rem", // 11px |
| 43 | 9.5: "2.375rem", // 38px |
| 44 | }, |
| 45 | boxShadow: { |
| 46 | "content-wrapper": |
| 47 | "0px 1px 1px 0px #0000000F, 0px 1px 2px 0px #0000001A", |
| 48 | "container-item": "0px 1.5px 1px 0px rgba(0, 0, 0, 0.05)", // Custom shadow |
| 49 | }, |
| 50 | spacing: { |
| 51 | "slide-over-container": "566px", |
| 52 | }, |
| 53 | fontFamily: { |
| 54 | figtree: ["Figtree", "sans-serif"], |
| 55 | }, |
| 56 | }, |
| 57 | }, |
| 58 | plugins: [], |
| 59 | corePlugins: { |
| 60 | preflight: false, |
| 61 | }, |
| 62 | important: ":is(#hfe-settings-app, [data-floating-ui-portal])", |
| 63 | }); |
| 64 |