Skip to content
Snippets Groups Projects
tailwind.config.js 733 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
      colors: {
        // Configure your color palette here
        'white-base': '#fff',
        'blue-base': '#ade1f5',
        'blue-dark': '#7a8ede',
        'blue-light': '#b3bce0',
        'pink-light': '#f473b9'
raghosh's avatar
raghosh committed
        // primary: '#ef0087'
      },
raghosh's avatar
raghosh committed
    },
moon's avatar
moon committed
  },
  plugins: [],
raghosh's avatar
raghosh committed
}