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.

34 lines
988 B

module.exports = {
3 years ago
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/@themesberg/flowbite/**/*.js",
3 years ago
"./src/**/*.{html,js}",
"./node_modules/tw-elements/dist/js/**/*.js",
3 years ago
],
theme: {
2 years ago
extend: {
fontFamily: {
sansbold: ["sansbold"],
2 years ago
},
},
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)",
},
},
3 years ago
plugins: [
require("@themesberg/flowbite/plugin"),
require("tw-elements/dist/plugin"),
],
};