You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GHHub/tailwind.config.js

22 lines
421 B
JavaScript

/** @type {import('tailwindcss').Config} */
import colors from 'tailwindcss/colors'
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'media',
theme: {
colors: {
...colors,
'primary': '#00b96b',
'danger': '#ef4444',
'muted': '#6b7280',
},
extend: {},
},
plugins: [],
corePlugins: {
preflight: false,
divideColor: true,
},
}