This repository has been archived by the owner on Oct 15, 2023. It is now read-only.
generated from ijsKoud/nextjs-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.cjs
73 lines (68 loc) · 2.23 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
darkMode: "class",
theme: {
extend: {
fontSize: Array(24)
.fill(null)
.map((_, key) => ({ [key + 1]: [(key + 1) * 4] }))
.reduce((a, b) => ({ ...a, ...b }), {}),
backdropBlur: {
"bg-dark": "175px",
"bg-light": "175px"
},
borderColor: {
background: "#272728"
},
colors: {
primary: "#4E9ED7",
"primary-900": "rgba(78, 158, 215, 0.9)",
"primary-800": "rgba(78, 158, 215, 0.8)",
"primary-700": "rgba(78, 158, 215, 0.7)",
"primary-600": "rgba(78, 158, 215, 0.6)",
"primary-500": "rgba(78, 158, 215, 0.5)",
"primary-400": "rgba(78, 158, 215, 0.4)",
"primary-300": "rgba(78, 158, 215, 0.3)",
"primary-200": "rgba(78, 158, 215, 0.2)",
"primary-100": "rgba(78, 158, 215, 0.1)",
secondary: "#62ADE3",
tertairy: "#2B91D9",
white: "#fff",
"white-900": "rgba(255, 255, 255, 0.9)",
"white-800": "rgba(255, 255, 255, 0.8)",
"white-700": "rgba(255, 255, 255, 0.7)",
"white-600": "rgba(255, 255, 255, 0.6)",
"white-500": "rgba(255, 255, 255, 0.5)",
"white-400": "rgba(255, 255, 255, 0.4)",
"white-300": "rgba(255, 255, 255, 0.3)",
"white-200": "rgba(255, 255, 255, 0.2)",
"white-100": "rgba(255, 255, 255, 0.1)",
"light-gray": "#AFAFAF",
"dark-gray": "#151516",
background: "#131313",
"background-alt": "#191919",
"background-900": "rgba(19, 19, 19, 0.9)",
"background-800": "rgba(19, 19, 19, 0.8)",
"background-700": "rgba(19, 19, 19, 0.7)",
"background-600": "rgba(19, 19, 19, 0.6)",
"background-500": "rgba(19, 19, 19, 0.5)",
"background-400": "rgba(19, 19, 19, 0.4)",
"background-300": "rgba(19, 19, 19, 0.3)",
"background-200": "rgba(19, 19, 19, 0.2)",
"background-100": "rgba(19, 19, 19, 0.1)",
black: "#222222",
"black-900": "rgba(34, 34, 34, 0.9)",
"black-800": "rgba(34, 34, 34, 0.8)",
"black-700": "rgba(34, 34, 34, 0.7)",
"black-600": "rgba(34, 34, 34, 0.6)",
"black-500": "rgba(34, 34, 34, 0.5)",
"black-400": "rgba(34, 34, 34, 0.4)",
"black-300": "rgba(34, 34, 34, 0.3)",
"black-200": "rgba(34, 34, 34, 0.2)",
"black-100": "rgba(34, 34, 34, 0.1)"
}
}
},
plugins: []
};