-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.ts
48 lines (44 loc) · 785 Bytes
/
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
"use client"
import { type MantineColorsTuple, createTheme } from "@mantine/core";
const primary: MantineColorsTuple = [
"#eef3ff",
"#dee2f2",
"#bdc2de",
"#98a0ca",
"#7a84ba",
"#6672b0",
"#5c68ac",
"#4c5897",
"#424e88",
"#364379"
];
const dark: MantineColorsTuple = [
"#f8fafc",
"#f1f5f9",
"#e2e8f0",
"#cbd5e1",
"#94a3b8",
"#64748b",
"#475569",
"#334155",
"#1e293b",
"#0f172a",
"#020617"
]
export const theme = createTheme({
primaryColor: "primary",
primaryShade: 6,
fontFamily: "Nunito",
colors: {
primary,
dark
},
breakpoints: {
xs: "425",
sm: "640",
md: "768",
lg: "1024",
xl: "1280",
xxl: "1536"
}
})