2023-12-20 22:26:25 +01:00
|
|
|
import { theme } from "tailwindcss/defaultConfig";
|
|
|
|
|
2023-12-19 17:40:02 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
2023-12-20 03:24:38 +01:00
|
|
|
darkMode: "class",
|
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
|
|
"node_modules/flowbite-vue/**/*.{js,jsx,ts,tsx,vue}",
|
|
|
|
"node_modules/flowbite/**/*.{js,jsx,ts,tsx}",
|
|
|
|
],
|
|
|
|
theme: {
|
2023-12-20 22:26:25 +01:00
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ['"Fira Sans"', ...theme.fontFamily.sans],
|
|
|
|
},
|
|
|
|
},
|
2023-12-20 03:24:38 +01:00
|
|
|
},
|
|
|
|
plugins: [import("flowbite/plugin")],
|
|
|
|
};
|