Files
REXNT/tailwind.config.js

31 lines
791 B
JavaScript
Raw Normal View History

2025-12-23 17:09:40 +03:00
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
2025-12-23 22:00:31 +03:00
darkMode: 'class',
2025-12-23 17:09:40 +03:00
theme: {
2025-12-23 22:00:31 +03:00
extend: {
colors: {
2025-12-25 16:48:36 +03:00
theme: {
DEFAULT: 'var(--bg-color)',
2025-12-23 22:00:31 +03:00
},
2025-12-25 16:48:36 +03:00
surface: {
DEFAULT: 'var(--surface-color)',
},
border: {
theme: 'var(--border-color)',
},
primary: {
light: '#5761dd',
DEFAULT: 'var(--primary-color)',
dark: '#3639a3',
},
secondary: {
DEFAULT: 'var(--secondary-color)',
2025-12-23 22:00:31 +03:00
},
},
},
2025-12-23 17:09:40 +03:00
},
plugins: [],
}