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.
29 lines
804 B
29 lines
804 B
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)", |
|
}, |
|
}, |
|
plugins: [ |
|
require("@themesberg/flowbite/plugin"), |
|
require("tw-elements/dist/plugin"), |
|
], |
|
};
|
|
|