Skip to content
Snippets Groups Projects
tailwind.config.js 611 B
Newer Older
moon's avatar
moon committed
module.exports = {
  purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
  darkMode: false, // or 'media' or 'class'
raghosh's avatar
raghosh committed
  content: [],
moon's avatar
moon committed
  theme: {
    extend: {
      fontFamily: {
        'pacifico': ['Pacifico'],
        'montserrat': ['Montserrat'],
        'roboto': ['Roboto'],
        'righteous': ['Righteous'],
        'lato': ['Lato'],
        'raleway': ['Raleway'],
raghosh's avatar
raghosh committed
      },
raghosh's avatar
raghosh committed
      colors: {
        // Configure your color palette here
        'white-base': '#fff',
        'pink-base': '#ef0087',
        'blue-base': '#a7ebfb'
        // primary: '#ef0087'
      },
raghosh's avatar
raghosh committed
    },
moon's avatar
moon committed
  },
  plugins: [],
raghosh's avatar
raghosh committed
}