-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuno.config.ts
114 lines (113 loc) · 2.48 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// uno.config.ts
import { defineConfig, presetUno, presetWebFonts } from "unocss";
export default defineConfig({
content: {
filesystem: ["**/*.{html,js,ts,jsx,tsx,vue,svelte,astro}"],
},
theme: {
boxShadow: {
custom: `2px 2px 0`,
"custom-hover": `1px 1px 0`,
},
fontFamily: {
sans: ["CabinetGrotesk", "Satoshi"],
},
gridTemplateRows: {
"auto-250": "repeat(auto-fill, 250px)",
},
gridTemplateColumns: {
"4-minmax": "repeat(4, minmax(150px, 1fr))",
},
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: "#F9CDD3",
200: "#F3A3AA",
300: "#EC7981",
400: "#E64F59",
500: "#E63946",
600: "#CF2F3D",
700: "#B82534",
800: "#A01B2B",
900: "#891321",
},
yellow: {
100: "#FFF9C4",
200: "#FFF59D",
300: "#FFF176",
400: "#FFEE58",
500: "#FFEB3B",
600: "#FDD835",
700: "#FBC02D",
800: "#F9A825",
900: "#F57F17",
},
blue: {
100: "#BBDEFB",
200: "#90CAF9",
300: "#64B5F6",
400: "#42A5F5",
500: "#2196F3",
600: "#1E88E5",
700: "#1976D2",
800: "#1565C0",
900: "#0D47A1",
},
purple: {
100: "#E1BEE7",
200: "#CE93D8",
300: "#BA68C8",
400: "#AB47BC",
500: "#9C27B0",
600: "#8E24AA",
700: "#7B1FA2",
800: "#6A1B9A",
900: "#4A148C",
},
green: {
100: "#C8E6C9",
200: "#A5D6A7",
300: "#81C784",
400: "#66BB6A",
500: "#4CAF50",
600: "#43A047",
700: "#388E3C",
800: "#2E7D32",
900: "#1B5E20",
},
},
},
presets: [
presetUno(),
presetWebFonts({
provider: "fontshare",
fonts: {
sans: ["Cabinet Grotesk", "Satoshi"],
serif: "Zodiak",
},
}),
],
});