-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.config.ts
61 lines (60 loc) · 1.04 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import {
defineConfig,
presetAttributify,
presetTypography,
presetUno,
presetWebFonts,
} from 'unocss'
export default defineConfig({
theme: {
fontFamily: {
sans: 'Satoshi',
},
colors: {
gray: {
50: '#FAFAFA',
100: '#F5F5F5',
200: '#E5E5E5',
300: '#D4D4D4',
400: '#A3A3A3',
500: '#737373',
600: '#525252',
700: '#404040',
800: '#262626',
900: '#171717',
},
darkslate: {
50: '#3D3D3D',
100: '#2C2C2C',
200: '#262626',
300: '#202020',
400: '#1A1A1A',
500: '#171717' /* Exactly your example for the background */,
600: '#141414',
700: '#111111',
800: '#0E0E0E',
900: '#0B0B0B' /* Deeper and darker */,
},
primary: {
100: '#EDF2FB',
200: '#E2EAFC',
300: '#D7E3FC',
400: '#CCDBFD',
500: '#C1D3FE',
600: '#B6CCFE',
700: '#ABC4FF',
},
},
},
presets: [
presetUno(),
presetAttributify(),
presetTypography(),
presetWebFonts({
provider: 'fontshare',
fonts: {
sans: ['Cabinet Grotesk', 'Satoshi'],
},
}),
],
})