-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
72 lines (71 loc) · 1.84 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: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/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))",
},
colors: {
darkest: "hsl(230, 38%, 5%)",
lessDarker: "hsl(230, 30%, 9%)",
light: "#1e2433",
smth: "#262D40",
moreLighter: "#374151",
lightest: "#475569",
toxicBlue: "#26C6DA",
toxicPurple: "#DA00B2",
textMain: "white",
textSecondary: "#9ca3af",
up: "rgba(38,198,218, 0.56)",
down: "rgba(239,83,80, 0.4)",
secUp: "#047D74",
secDown: "#D04749",
sellColor: "#DA2C38",
buyColor: "#00916E",
},
backgroundSize: {
"size-200": "200% 200%",
},
backgroundPosition: {
"pos-0": "0% 0%",
"pos-100": "100% 100%",
},
maxWidth: {
"28": "7rem",
"32": "8rem",
},
minWidth: {
"28": "7rem",
minW: "5rem",
minWForm: "15rem",
},
zIndex: {
"10000": "10000",
},
screen: {},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
plugins: [],
};
export default config;