-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (39 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ["class"],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: "#4CE1D7",
light: {
text: "#070811",
background: "#E1EFE7",
secondary: "#CFE6F6",
accent: "#0E3553",
},
dark: {
text: "#e8e6fe",
background: "#0B0D22",
secondary: "#071926",
},
},
boxShadow: {
primary: "0 20px 60px -10px #d21e32",
},
keyframes: {
"fade-in": {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
animation: {
"fade-in": "fade-in ease-in-out 300ms",
},
fontFamily: {
"nunito-bold": ["Nunito-Bold", "system-ui"],
},
},
},
plugins: [],
};