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.

50 lines
1.5 KiB

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)",
surfaceBorder: "var(--theme-surfaceBorder)",
2 years ago
info: "var(--theme-info)",
infoText: "var(--theme-infoText)",
2 years ago
success: "var(--theme-success)",
successText: "var(--them2xl2xle-successText)",
2 years ago
warning: "var(--theme-warning)",
warningText: "var(--theme-warningText)",
2 years ago
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)",
},
},
3 years ago
plugins: [
require("@themesberg/flowbite/plugin"),
require("tw-elements/dist/plugin"),
],
};