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

29 lines
533 B
JavaScript

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