32 lines
801 B
JavaScript
32 lines
801 B
JavaScript
// import colors from 'tailwindcss/colors';
|
|
|
|
// import fbplugin from 'flowbite/plugin';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
|
'./node_modules/flowbite/**/*.js',
|
|
'./node_modules/flowbite-vue/**/*.{js,jsx,ts,tsx}',
|
|
'./3rdparty/flowbite-vue/**/*.{vue,js,jsx,ts,tsx}',
|
|
],
|
|
theme: {
|
|
// colors: {
|
|
// gray: colors.coolGray,
|
|
// blue: colors.lightBlue,
|
|
// red: colors.rose,
|
|
// pink: colors.fuchsia,
|
|
// },
|
|
// fontFamily: {
|
|
// sans: ['Graphik', 'sans-serif'],
|
|
// serif: ['Merriweather', 'serif'],
|
|
// },
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
// require('@acmecorp/base-tailwind-config'),
|
|
require('flowbite/plugin'),
|
|
],
|
|
};
|