1
0
voyager-frontend/tailwind.config.js
Marcio c32ac5fd3c Refactor App structure and improve styling.
Reorganized component structure for modularity, introducing `AppHeader`, `Sidebar`, and page-specific components. Simplified state management with `LogProvider` context. Added custom Tailwind CSS themes for consistent app styling.
2026-02-09 22:20:04 -03:00

28 lines
604 B
JavaScript

module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'app-bg': '#0B1120',
'app-surface': '#151e32',
'app-card': '#1E293B',
'app-border': '#2D3B55',
'primary': '#3B82F6',
'primary-hover': '#2563EB',
'text-main': '#F1F5F9',
'text-muted': '#94A3B8',
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
borderRadius: {
lg: '0.5rem',
xl: '0.75rem',
'2xl': '1rem',
},
},
},
plugins: [],
}