-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.ts
63 lines (61 loc) · 1.05 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { createTheme, rem } from "@mantine/core";
export const theme = createTheme({
fontFamily: "U8-Regular, sans-serif",
headings: {
fontFamily: "U8-Black, sans-serif",
sizes: {
h1: { fontWeight: "600", fontSize: rem(56) },
},
},
primaryColor: "navy-blue",
colors: {
"navy-blue": [
"#edf4fd",
"#d8e5f5",
"#acc8ed",
"#7eaae6",
"#5990e1",
"#4380de",
"#3778dd",
"#2b66c5",
"#225ab0",
"#124e9c",
],
blue: [
"#e6f8ff",
"#d0ecff",
"#a0d8fc",
"#6dc1fa",
"#47aff9",
"#32a4f9",
"#269efa",
"#188adf",
"#017ac8",
"#0069b1",
],
yellow: [
"#fff9e0",
"#fff1ca",
"#ffe299",
"#ffd262",
"#ffc436",
"#ffbb18",
"#ffb702",
"#e4a000",
"#ca8e00",
"#af7a00",
],
beige: [
"#fff9e5",
"#fff0d0",
"#fee19f",
"#fed069",
"#fec13e",
"#feb825",
"#feb418",
"#e29d0b",
"#c98c00",
"#ae7800",
],
},
});