-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
executable file
·187 lines (181 loc) · 4.71 KB
/
tailwind.config.js
File metadata and controls
executable file
·187 lines (181 loc) · 4.71 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import plugin from "tailwindcss/plugin";
let font_base = 16;
let font_scale = 1.25;
let h6 = font_base / font_base;
let h5 = h6 * font_scale;
let h4 = h5 * font_scale;
let h3 = h4 * font_scale;
let h2 = h3 * font_scale;
let h1 = h2 * font_scale;
let fontPrimary = "serif";
let fontPrimaryType = "serif";
let fontSecondary = "open sans";
let fontSecondaryType = "sans-serif";
fontPrimary = fontPrimary
.replace(/\+/g, " ")
.replace(/:[ital,]*[ital@]*[wght@]*[0-9,;]+/gi, "");
fontSecondary = fontSecondary
.replace(/\+/g, " ")
.replace(/:[ital,]*[ital@]*[wght@]*[0-9,;]+/gi, "");
/** @type {import("tailwindcss").Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}"],
safelist: [],
darkMode: "class",
theme: {
screens: {
sm: "540px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
container: {
center: true,
padding: "2rem",
},
extend: {
colors: {
txt: {
p: "#000",
s: "#222",
light: "#444",
},
bg: {
p: "#fff",
s: "#ddd",
t: "#ddd",
},
border: "#ddd",
darkmode: {
txt: {
p: "#fff",
s: "#ddd",
light: "#bbb",
},
bg: {
p: "#222",
s: "#444",
t: "#444",
},
border: "#444",
},
},
minHeight: {
static_sidemenu: "calc(100vh - 6rem)",
},
maxHeight: {
static_sidemenu: "calc(100vh - 6rem)",
},
fontSize: {
base: font_base + "px",
h1: h1 + "rem",
"h1-sm": h1 * 0.8 + "rem",
h2: h2 + "rem",
"h2-sm": h2 * 0.8 + "rem",
h3: h3 + "rem",
"h3-sm": h3 * 0.8 + "rem",
h4: h4 + "rem",
h5: h5 + "rem",
h6: h6 + "rem",
},
fontFamily: {
primary: [fontPrimary, fontPrimaryType],
secondary: [fontSecondary, fontSecondaryType],
},
spacing: {
"1/2": "50%",
"1/3": "33.333333%",
"2/3": "66.666667%",
"1/4": "25%",
"2/4": "50%",
"3/4": "75%",
"1/6": "16.666667%",
"2/6": "33.333333%",
"3/6": "50%",
"4/6": "66.666667%",
"5/6": "83.333333%",
"1/12": "8.333333%",
"2/12": "16.666667%",
"3/12": "25%",
"4/12": "33.333333%",
"5/12": "41.666667%",
"6/12": "50%",
"7/12": "58.333333%",
"8/12": "66.666667%",
"9/12": "75%",
"10/12": "83.333333%",
"11/12": "91.666667%",
"9/16": "56.25%",
},
animation: {
// Intersect
fade: "fadeIn 1000ms both",
fadeUp: "fadeInUp 1000ms both",
fadeDown: "fadeInDown 1000ms both",
fadeRight: "fadeInRight 1000ms both",
fadeLeft: "fadeInLeft 1000ms both",
scale: "scaleOut 1000ms both",
// Star Background
twinkle: "twinkle 5s infinite ease-in-out",
// Cycle Background
cycleBg: "cycleBg 60s ease infinite",
},
keyframes: {
// Intersect
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
fadeInUp: {
"0%": { opacity: 0, transform: "translateY(2rem)" },
"100%": { opacity: 1, transform: "translateY(0)" },
},
fadeInDown: {
"0%": { opacity: 0, transform: "translateY(-2rem)" },
"100%": { opacity: 1, transform: "translateY(0)" },
},
fadeInRight: {
"0%": { opacity: 0, transform: "translateX(-2rem)" },
"100%": { opacity: 1, transform: "translateX(0)" },
},
fadeInLeft: {
"0%": { opacity: 0, transform: "translateX(2rem)" },
"100%": { opacity: 1, transform: "translateX(0)" },
},
scaleOut: {
"0%": { opacity: 0, transform: "scale(0.5)" },
"100%": { opacity: 1, transform: "scale(1)" },
},
// Star Background
twinkle: {
"0%, 20%, 100%": { opacity: 1 },
"10%": { opacity: 0.25 },
},
// Cycle Background
cycleBg: {
"0%, 100%": { backgroundPosition: "0% 50%" },
"50%": { backgroundPosition: "100% 50%" },
},
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("tailwind-bootstrap-grid")({
generateContainer: false,
gridGutterWidth: "2rem",
gridGutters: {
1: "0.25rem",
2: "0.5rem",
3: "1rem",
4: "1.5rem",
5: "3rem",
},
}),
plugin(({ addVariant }) => {
addVariant("intersect", "&:not([no-intersect])");
}),
],
};