-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.04 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
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/styles/**/*.css",
],
theme: {
extend: {
fontSize: {
"2xs": ".625rem",
},
spacing: {
"1/2": ".125rem",
},
inset: {
"1/2": "50%",
"-1/2": "-50%",
},
colors: {
inherit: "inherit",
background: "#727e84",
accent: "#ebb7e7",
primary: "#fcf5c3",
secondary: "#729a98",
tertiary: "#30404d",
},
keyframes: {
typing: {
from: { width: "0" },
to: { width: "100%" },
},
"blink-caret": {
"from, to": { "border-color": "transparent" },
"50%": { "border-color": "#ebb7e7" },
},
},
animation: {
typing:
"typing 1.8s steps(18, start), blink-caret 1s step-end infinite",
},
},
},
variants: {},
plugins: [],
};