-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
64 lines (63 loc) · 1.52 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
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}",
],
darkMode: "class",
theme: {
colors: {
primary: "#4C64E4",
"border-light": "#c1c1c1",
"border-dark": "#191919",
"text-light": "#FFFFFF",
"text-dark": "#010101",
"text-secondary-light": "#222",
"text-secondary-dark": "#c9c9c9",
"bg-dark": "#010101",
"bg-light-second": "#f1f1f1",
"bg-light": "#ffffff",
},
fontSize: {
sm: "0.8rem",
base: "1rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "2.5rem",
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
container: "1200px",
},
extend: {
gridTemplateColumns: {
main: "repeat(auto-fit, minmax(370px, 1fr))",
"main-mob": "1fr 1fr",
},
maxWidth: {
"1200": "1200px",
},
minHeight: {
"180": "170px",
},
flex: {
"80": "0 0 80%",
"20": "0 0 20%",
},
opacity: {
"1": "0.01",
},
backgroundImage: {
"body-gradient":
"radial-gradient(94.3% 175% at 93.8% 25%, rgba(0, 0, 0, 0.08) 0%, rgba(13, 71, 110, 0.12) 50%)",
"spotify-gradient":
"radial-gradient(94.3% 175% at 93.8% 25%, rgba(31, 214, 97, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%)",
},
},
},
plugins: [],
};
export default config;