-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
86 lines (85 loc) · 1.77 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
82
83
84
85
86
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
rules: {
"at-rule-no-unknown": [
true,
{
ignoreAtRules: ["tailwind", "apply"],
},
],
},
theme: {
extend: {
colors: {
offBlack: "#111313",
offBlue: "#81A8F8",
offWhite: "#F2F2F2",
midGreen: "#09C261",
midWhite: "#FAF4E8",
mustard: "#FBEED1",
midMus: "#FDF3D8",
heat: "#FBDB86",
deep: "#0091FF",
libGray: "#DEDCE1",
flight: "#F0E7E2",
viol: "#9DA1F4",
liBl: "#A3E3F4",
liOr: "#F9C571",
liVi: "#C1A8E8",
offY: "#FEEA66",
liDa: "#F27A24",
grayBlue: "#C9D8E4",
lime: "#77FFB8",
baby: "#53B4FF",
lily: "#F6DDC3",
lili: "#B4FAB5"
},
fontFamily: {
fira: "Fira Regular",
firaM: "Fira Medium",
lib: "Liberation Mono",
libB: "Liberation Mono Bold",
val: "Valencia",
coc: "Cochin",
nex: "Nexus",
oda: "Odachi",
alva: "ALVA Regular"
},
keyframes: {
unblur: {
"0%": {
filter: "blur(20)",
},
"100%": {
filter: "blur(0)",
},
},
},
animation: {
unblur: "unblur 0.5s linear",
},
fontSize: {
xxs: "0.6rem",
},
gridAutoRows: {
auto: "auto auto",
},
gridAutoColumns: {
auto: "auto auto",
},
screens: {
midi: "1140px",
half: "900px",
alm: "740px",
over: "1490px",
galaxy: "300px",
duo: "500px"
},
},
},
plugins: [],
};