aboutsummaryrefslogtreecommitdiff
path: root/front-end/tailwind.config.js
blob: 934c16c79bf3039888a8b6d6536ea63846c7654b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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,
    }),
  ]
}