-
Notifications
You must be signed in to change notification settings - Fork 1
/
unocss.config.ts
56 lines (55 loc) · 1.15 KB
/
unocss.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import {
defineConfig,
presetAttributify,
presetIcons,
presetTypography,
presetUno,
presetWebFonts,
transformerDirectives,
transformerVariantGroup,
} from 'unocss'
export default defineConfig({
shortcuts: {
'border-base': 'border-gray-200 dark:border-dark-200',
'bg-base': 'bg-white dark:bg-dark-100',
'color-base': 'text-gray-900 dark:text-gray-300',
'color-fade': 'text-gray-900:50 dark:text-gray-300:50',
'icon-button': 'op50 hover:op100 my-auto',
'img-resize': 'resize max-w-full h-auto',
},
presets: [
presetUno(),
presetAttributify(),
presetIcons({
scale: 1.2,
}),
presetTypography(),
presetWebFonts({
fonts: {
sans: 'DM Sans',
serif: 'DM Serif Display',
mono: 'DM Mono',
},
}),
],
transformers: [
transformerDirectives(),
transformerVariantGroup(),
],
theme: {
colors: {
primary: 'var(--theme-color)',
dark: {
100: '#222',
200: '#333',
300: '#444',
400: '#555',
500: '#666',
600: '#777',
700: '#888',
800: '#999',
900: '#aaa',
},
},
},
})