-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.ts
52 lines (51 loc) · 801 Bytes
/
colors.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
import { type MantineThemeOverride } from "@mantine/core";
export const extendedColors: MantineThemeOverride["colors"] = {
primary: [
"#717171",
"#656565",
"#595959",
"#4D4D4D",
"#414141",
"#363636",
"#2A2A2A",
"#1E1E1E",
"#121212",
"#101010",
],
secondary: [
"#191919",
"#323231",
"#4B4A4A",
"#646363",
"#7D7C7C",
"#AFAEAD",
"#C8C6C6",
"#E1DFDE",
"#FAF8F7",
"#FBF9F8",
],
accent: [
"#E6ECF5",
"#CCD9EB",
"#B3C7E1",
"#99B4D7",
"#80A1CE",
"#4D7BBA",
"#3369B0",
"#1956A6",
"#00439C",
"#003C8C",
],
accented: [
"#000710",
"#000D1F",
"#00142F",
"#001B3E",
"#00224E",
"#002F6D",
"#00367D",
"#003C8C",
"#00439C",
"#1956A6",
],
};