-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
41 lines (36 loc) · 933 Bytes
/
tailwind.config.ts
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
37
38
39
40
41
import type { Config } from 'tailwindcss';
import daisyui from 'daisyui';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
quicksand: ['Quicksand', 'sans-serif'],
},
colors: {
// Base colors
primary: '#02B9B0',
secondary: '#F3F4F6',
background: '#F9FCFC',
backgroundHover: '#F2F5F5',
// Text colors using semantic naming
text: {
active: '#1A1A1A',
inactive: '#1A1A1AB2',
primary: '#1F2937',
secondary: '#7A8484',
},
// Other UI colors
border: '#1A1A1A1F',
borderActive: '#B3BEBE',
accent: '#3B82F6',
},
transitionProperty: {
'size': 'width, height',
'spacing': 'margin, padding',
'height': 'height',
}
}
},
plugins: [daisyui]
} satisfies Config;