chore: +tailwindcss
parent
77a03b89bc
commit
6ba07440a7
@ -0,0 +1,6 @@
|
||||
export default {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
/** @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',
|
||||
},
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
corePlugins: {
|
||||
preflight: false,
|
||||
divideColor: true,
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue