-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.ts
72 lines (71 loc) · 1.76 KB
/
tailwind.config.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
64
65
66
67
68
69
70
71
72
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
fontFamily: {
jetbrains: "JetBrains Mono, monospace",
geist: "Geist mono, monospace",
},
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",
},
},
keyframes: {
"ping-size": {
"75%, 100%": {
transform: "scale(1.2)",
},
},
},
animation: {
"ping-size": "ping-size 1s cubic-bezier(0, 0, 0.2, 1) infinite",
},
opacity: {
"opacity-20": "0.2",
},
},
},
plugins: [],
};
export default config;