mirror of
https://github.com/Myzel394/kleckrelay-docs.git
synced 2025-06-18 15:35:28 +02:00
fix: add missing tailwind config
This commit is contained in:
parent
a8e860ff50
commit
3a9bf64b47
27
tailwind.config.js
Normal file
27
tailwind.config.js
Normal 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: [],
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user