-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.ts
46 lines (46 loc) · 1.16 KB
/
theme.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
const theme = {
colors: {
logo: "#58465c",
primary: {
"50": "#fcf4ff",
"100": "#f7e9fe",
"200": "#f0d2fc",
"300": "#e6aef9",
"400": "#d87ef4",
"500": "#cb61eb",
"600": "#ab2dcc",
"700": "#8f22a9",
"800": "#771e8a",
"900": "#651e71",
"950": "#40074b",
neutral: "#f5edf7"
},
accent: {
"50": "#ecfcff",
"100": "#cff7fe",
"200": "#a5effc",
"300": "#67e4f9",
"400": "#22d0ee",
"500": "#06b6d4",
"600": "#0899b2",
"700": "#0e7d90",
"800": "#156775",
"900": "#165863",
"950": "#083b44"
},
neutral: {
"50": "#fafafa",
"100": "#f4f4f5",
"200": "#e4e4e7",
"300": "#d4d4d8",
"400": "#a1a1aa",
"500": "#71717a",
"600": "#52525b",
"700": "#3f3f46",
"800": "#27272a",
"900": "#18181b",
"950": "#09090b"
}
}
}
export default theme