-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (48 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
48 lines (48 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["Nunito"],
eslLegend: ["ESL Legend"],
},
colors: {
dark: "#282828",
darker: "#1b1b1b",
darkest: "#161616",
"neon-green": "#9ccd7e",
light: "#808080",
lightest: "#f6f7fa",
},
dropShadow: {
"3xl": ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.8)"],
},
animation: {
"fade-in-down": "fade-in-down 1s ease-out infinite",
},
keyframes: {
"fade-in-down": {
"0%": {
opacity: 0,
},
"30%": {
opacity: 1,
},
"60%": {
opacity: 1,
},
"100%": {
top: "90%",
opacity: 0,
},
},
},
},
},
plugins: [],
};