You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
module.exports = { |
|
content: [ |
|
"./src/**/*.{js,jsx,ts,tsx}", |
|
"./node_modules/@themesberg/flowbite/**/*.js", |
|
"./src/**/*.{html,js}", |
|
"./node_modules/tw-elements/dist/js/**/*.js", |
|
], |
|
theme: { |
|
extend: { |
|
fontFamily: { |
|
sansbold: ["sansbold"], |
|
}, |
|
}, |
|
colors: { |
|
primary: "var(--theme-primary)", |
|
primaryText: "var(--theme-primaryText)", |
|
secondary: "var(--theme-secondary)", |
|
secondaryText: "var(--theme-secondaryText)", |
|
primaryDark: "var(--theme-primaryDark)", |
|
primaryLight: "var(--theme-primaryLight)", |
|
secondaryDark: "var(--theme-secondaryDark)", |
|
secondaryLight: "var(--theme-secondaryLight)", |
|
background: "var(--theme-background)", |
|
backgroundText: "var(--theme-backgroundText)", |
|
surface: "var(--theme-surface)", |
|
surfaceText: "var(--theme-surfaceText)", |
|
surfaceBorder: "var(--theme-surfaceBorder)", |
|
info: "var(--theme-info)", |
|
infoText: "var(--theme-infoText)", |
|
success: "var(--theme-success)", |
|
successText: "var(--them2xl2xle-successText)", |
|
warning: "var(--theme-warning)", |
|
warningText: "var(--theme-warningText)", |
|
error: "var(--theme-error)", |
|
errorText: "var(--theme-errorText)", |
|
}, |
|
// screens: { |
|
// sm: "var(--theme-sm)", |
|
// md: "var(--theme-md)", |
|
// lg: "var(--theme-lg)", |
|
// xl: "var(--theme-xl)", |
|
// "2xl": "var(--theme-2xl)", |
|
// }, |
|
}, |
|
plugins: [ |
|
require("@themesberg/flowbite/plugin"), |
|
require("tw-elements/dist/plugin"), |
|
], |
|
};
|
|
|