mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
36 lines
675 B
JavaScript
36 lines
675 B
JavaScript
|
|
|
|
const colors = require('tailwindcss/colors');
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: ['./src/renderer/**/*.tsx'],
|
|
mode: 'jit',
|
|
plugins: [require('tailwind-scrollbar-hide'), require('tailwind-scrollbar')],
|
|
variants: {
|
|
scrollbar: ['rounded']
|
|
},
|
|
theme:{
|
|
colors:{
|
|
...colors,
|
|
'main-color': {
|
|
1: '#202225',
|
|
2: '#2C2F33',
|
|
3: '#40444b',
|
|
},
|
|
'light-main-color':{
|
|
1: "#E3E5E8",
|
|
2: "#F2F3F5",
|
|
3: "#FFFFFF",
|
|
}
|
|
},
|
|
extend:{
|
|
keyframes:{
|
|
},
|
|
boxShadow: {
|
|
'center': '0px 0px 8px 0px',
|
|
}
|
|
}
|
|
}
|
|
};
|