Skip to content

Commit 2c39e7f

Browse files
authored
Merge pull request #15 from maitamdev/feat/theme-config
feat(config): add theme system
2 parents 149f4c8 + 36c272e commit 2c39e7f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/config/theme.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Theme configuration
2+
export const theme = {
3+
colors: {
4+
primary: { 50: '#eff6ff', 100: '#dbeafe', 500: '#3b82f6', 600: '#2563eb', 700: '#1d4ed8' },
5+
secondary: { 50: '#f8fafc', 100: '#f1f5f9', 500: '#64748b', 600: '#475569' },
6+
accent: { 50: '#fdf4ff', 100: '#fae8ff', 500: '#a855f7', 600: '#9333ea' },
7+
},
8+
fonts: { heading: 'Inter, system-ui, sans-serif', body: 'Inter, system-ui, sans-serif', mono: 'JetBrains Mono, monospace' },
9+
shadows: { sm: '0 1px 2px rgba(0,0,0,0.05)', md: '0 4px 6px rgba(0,0,0,0.1)', lg: '0 10px 15px rgba(0,0,0,0.1)', xl: '0 20px 25px rgba(0,0,0,0.1)' },
10+
borderRadius: { sm: '0.375rem', md: '0.75rem', lg: '1rem', xl: '1.5rem', full: '9999px' },
11+
};

0 commit comments

Comments
 (0)