You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
const colors = require('tailwindcss/colors');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
// purge: ['./public/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
|
|
darkMode: false, // or 'media' or 'class'
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
colors: {
|
|
|
|
blue: colors.sky,
|
|
|
|
gray: colors.blueGray,
|
|
|
|
red: colors.red,
|
|
|
|
orange: colors.orange,
|
|
|
|
yellow: colors.yellow,
|
|
|
|
green: colors.green,
|
|
|
|
pink: colors.rose,
|
|
|
|
white: colors.white,
|
|
|
|
black: '#333',
|
|
|
|
transparent: 'transparent',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
variants: { extend: {} },
|
|
|
|
plugins: [],
|
|
|
|
corePlugins: {
|
|
|
|
space: false,
|
|
|
|
divideWidth: false,
|
|
|
|
divideColor: false,
|
|
|
|
divideStyle: false,
|
|
|
|
divideOpacity: false,
|
|
|
|
},
|
|
|
|
};
|