-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.cjs
58 lines (58 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./docs/**/*.{html,md,mdx,tsx,js,jsx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
jetbrains: "JetBrains Mono, monospace",
geist: "Geist mono, monospace",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
"white-44": "rgba(255, 255, 255, 0.44)",
"fg-primary": "#efebf5",
success: {
lite: "#85ffd3",
primary: "#00ffa3",
dark: "#00cc83",
},
alert: {
lite: "#ffe08f",
primary: "#ffc531",
dark: "#cc9e27",
},
error: {
lite: "#eb6c73",
med: "#f5454e",
dark: "#b80711",
},
grey: {
"elevation-5": "#222d3d",
"elevation-4": "#1d212e",
"elevation-3": "#171e29",
"elevation-2": "#131821",
"elevation-1": "#0f1319",
default: "#0c0f14",
logo: "#FFFFFF0A",
caret: "#1E2633",
},
teal: {
primary: "#62eded",
"primary-2": "#449fa1",
"primary-3": "#2a595d",
connect: "#00CECE",
},
},
},
},
plugins: [],
};