Files
litlyx/dashboard/tailwind.config.js
2024-06-14 15:41:49 +02:00

36 lines
863 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {
screens: {
"m-cards-wrap": '1830px'
},
fontSize: {
},
colors: {
card: {
DEFAULT: '#1d1d1f',
},
bg: {
DEFAULT: '#151517',
},
menu: {
DEFAULT: '#1d1d1f'
},
text: {
DEFAULT: '#FFFFFF',
sub: '#909aa1',
dirty: '#dadde0'
},
accent: {
DEFAULT: '#5680F8',
light: '#2c91ed',
sub: '#99A7F1',
},
}
},
},
plugins: [],
}