2026-01-09 20:12:38 +03:00
|
|
|
module.exports = {
|
|
|
|
|
darkMode: 'class',
|
2025-12-23 17:09:40 +03:00
|
|
|
content: [
|
|
|
|
|
"./index.html",
|
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
|
|
|
],
|
|
|
|
|
theme: {
|
2025-12-23 22:00:31 +03:00
|
|
|
extend: {
|
|
|
|
|
colors: {
|
2026-01-09 20:12:38 +03:00
|
|
|
primary: '#041c40',
|
|
|
|
|
secondary: '#e06923',
|
|
|
|
|
'dark-bg': '#313131',
|
|
|
|
|
'light-bg': '#F5EEE6',
|
2025-12-23 22:00:31 +03:00
|
|
|
},
|
2026-01-09 20:12:38 +03:00
|
|
|
backdropBlur: {
|
|
|
|
|
'xs': '2px',
|
|
|
|
|
'sm': '4px',
|
|
|
|
|
'md': '8px',
|
|
|
|
|
'lg': '12px',
|
|
|
|
|
'xl': '20px',
|
2025-12-23 22:00:31 +03:00
|
|
|
},
|
|
|
|
|
},
|
2025-12-23 17:09:40 +03:00
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
}
|