-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuno.config.ts
More file actions
55 lines (53 loc) · 946 Bytes
/
Copy pathuno.config.ts
File metadata and controls
55 lines (53 loc) · 946 Bytes
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import {
defineConfig,
presetAttributify,
presetIcons,
presetTypography,
presetUno,
transformerDirectives,
transformerVariantGroup,
} from 'unocss'
export default defineConfig({
theme: {
breakpoints: {
xs: '400px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1536px',
},
colors: {
background: {
DEFAULT: '#f1f5f9',
dark: '#111115',
},
primary: {
DEFAULT: '#0ea5e9',
dark: '#0ea5e9',
text: {
DEFAULT: '#111115',
dark: '#ffffff',
},
},
secondary: {
text: {
DEFAULT: '#475569',
dark: '#BCC9D3',
},
},
},
},
presets: [
presetUno(),
presetAttributify(),
presetIcons({
scale: 1.2,
}),
presetTypography(),
],
transformers: [
transformerDirectives(),
transformerVariantGroup(),
],
})