-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
81 lines (81 loc) · 1.76 KB
/
tailwind.config.js
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
74
75
76
77
78
79
80
81
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
//light theme
"primary-light": "#fcfcfc",
"accent-light": "crimson",
"text-light": "#050546",
//dark theme
"primary-dark": "#161414",
"accent-dark": "purple",
"text-dark": "#c9a0e7",
//neon theme
"primary-neon": "#0B0640",
"accent-neon": "cyan",
"text-neon": "#ffffff",
},
borderRadius: {
"brc-md": "20px",
"brc-sm": "15px",
},
spacing: {
28: "7rem",
},
letterSpacing: {
tighter: "-.04em",
},
lineHeight: {
tight: 1.2,
},
fontSize: {
xsm: "0.65rem",
"5xl": "2.5rem",
"6xl": "2.75rem",
"7xl": "4.5rem",
"8xl": "6.25rem",
},
boxShadow: {
small: "0 5px 10px rgba(0, 0, 0, 0.12)",
medium: "0 8px 30px rgba(0, 0, 0, 0.12)",
},
width: {
"btn-md": "8rem",
"btn-sm": "5.5rem",
"avat-img-sm": "1.5rem",
"avat-img-md": "3.0rem",
"avat-img-lg": "4.5rem",
"card-lg-vert": "29%",
"card-lg-horiz": "71%",
},
minWidth: {
"btn-sm": "60px",
"btn-md": "80px",
},
height: {
"btn-sm": "30px",
"btn-md": "40px",
},
inset: {
sm: "-30px",
md: "-40px",
neg: "-1rem",
},
padding: {
one: "1px",
},
borderWidth: {
sm: "30px",
"sm-2": "15px",
md: "40px",
"md-2": "20px",
},
borderColor: (theme) => ({
...theme("colors"),
}),
},
},
plugins: [],
};