mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-09 23:48:36 +01:00
26 lines
623 B
JavaScript
26 lines
623 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: {
|
|
DEFAULT: '#151517',
|
|
},
|
|
menu: {
|
|
DEFAULT: '#1d1d1f'
|
|
},
|
|
text: {
|
|
DEFAULT: '#FFFFFF',
|
|
sub: '#EBEBEB'
|
|
},
|
|
accent: {
|
|
DEFAULT: '#5680F8',
|
|
light: '#2c91ed',
|
|
sub: '#99A7F1',
|
|
},
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |