fix: add missing tailwind config

This commit is contained in:
Myzel394 2023-03-17 13:18:19 +01:00
parent a8e860ff50
commit 3a9bf64b47

27
tailwind.config.js Normal file
View File

@ -0,0 +1,27 @@
const { colors } = require('tailwindcss/defaultTheme')
module.exports = {
corePlugins: {
preflight: false,
},
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: ['class', '[data-theme="dark"]'],
theme: {
extend: {
colors: {
gray: {
'100': '#f5f5f5',
'200': '#eeeeee',
'300': '#e0e0e0',
'400': '#bdbdbd',
'500': '#9e9e9e',
'600': '#757575',
'700': '#616161',
'800': '#424242',
'900': '#212121',
}
}
},
},
plugins: [],
}