-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 1.34 KB
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./src/renderer/**/*.{js,ts,jsx,tsx,html}'],
theme: {
extend: {
colors: {
sparkle: {
bg: 'var(--color-bg)',
text: 'var(--color-text)',
'text-dark': 'var(--color-text-dark)',
'text-darker': 'var(--color-text-darker)',
'text-secondary': 'var(--color-text-secondary)',
'text-muted': 'var(--color-text-muted)',
card: 'var(--color-card)',
border: 'var(--color-border)',
'border-secondary': 'var(--color-border-secondary)',
primary: 'var(--color-primary)',
secondary: 'var(--color-secondary)',
accent: 'var(--color-accent)'
}
},
fontFamily: {
sans: ['Poppins', 'system-ui', 'sans-serif']
},
borderRadius: {
// Even sharper corners as requested
lg: '0.25rem', // 4px (was 6px)
xl: '0.5rem', // 8px (was 10px)
'2xl': '0.625rem', // 10px (was 12px)
'3xl': '0.75rem' // 12px (was 16px)
}
}
},
plugins: []
}