From 6cb7da37824d02a1898d08d0f9495c77fde4dd1d Mon Sep 17 00:00:00 2001 From: vnugent Date: Sat, 20 Jan 2024 23:49:29 -0500 Subject: inital commit --- front-end/tailwind.config.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 front-end/tailwind.config.js (limited to 'front-end/tailwind.config.js') diff --git a/front-end/tailwind.config.js b/front-end/tailwind.config.js new file mode 100644 index 0000000..934c16c --- /dev/null +++ b/front-end/tailwind.config.js @@ -0,0 +1,26 @@ +import colors from 'tailwindcss/colors' +import fb from 'flowbite/plugin' + +export default { + cpurge: ['./*.html', './src/**/*.{vue,js,ts,jsx,tsx,css}'], + content: [ + "./index.html", + "./src/**/*.{vue,js,ts,jsx,tsx}", + "./node_modules/flowbite/**/*.js", //flowbyte stuff + ], + darkMode: 'class', // or 'media' or 'class' + theme: { + fontFamily:{ + sans: ['Graphik', 'sans-serif'], + serif: ['Merriweather', 'serif'], + }, + colors + }, + plugins: [ + fb({ + charts: true, + forms: true, + tooltips: true, + }), + ] +} -- cgit