-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuno.config.ts
46 lines (45 loc) · 958 Bytes
/
uno.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
import { defineConfig, presetWind3, presetIcons } from 'unocss'
export default defineConfig({
presets: [
presetIcons(),
presetWind3(),
],
theme: {
colors: {
bego: {
50: '#FF7777',
100: '#F7676E',
200: '#F15565',
300: '#EC465F',
400: '#E6375A',
500: '#E02956',
600: '#D32157',
700: '#C31C56',
800: '#A4164F',
900: '#7C1040',
950: '#430826',
},
},
},
safelist: [
'text-white',
'text-bego-400',
'text-bego-500',
'text-zinc-200',
'bg-bego-400',
'bg-bego-950',
'bg-bego-950/10',
'bg-zinc-900',
'ring-bego-400',
'divide-bego-400',
'hover:text-bego-500',
'hover:bg-bego-500',
'hover:bg-bego-900',
'hover:bg-bego-950',
'disabled:bg-bego-400',
'disabled:bg-bego-950',
'hover:ring-bego-400',
'focus-visible:outline-bego-400',
'focus-visible:ring-bego-400',
],
})