-
Notifications
You must be signed in to change notification settings - Fork 0
/
unocss.config.ts
40 lines (38 loc) · 1.06 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
import { defineConfig, presetUno, presetAttributify, presetIcons } from 'unocss'
export default defineConfig({
presets: [
presetUno(),
presetAttributify(),
presetIcons(),
],
theme: {
colors: {
'pastelgreen': {
'50': '#f0fdf1',
'100': '#ddfbdf',
'200': '#bdf5c2',
'300': '#6be677',
'400': '#4fd95d',
'500': '#28bf38',
'600': '#1b9e28',
'700': '#197c24',
'800': '#196222',
'900': '#16511d',
'950': '#062d0c',
},
'deyork': {
'50': '#f1f8f1',
'100': '#dfedde',
'200': '#bfdbc0',
'300': '#92bf96',
'400': '#67a06e',
'500': '#468350',
'600': '#33683c',
'700': '#295331',
'800': '#224329',
'900': '#1d3723',
'950': '#0f1f13',
},
},
},
})