-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
49 lines (48 loc) · 1.07 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
mode: "jit",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"color-primary": "#04ddb2",
"color-secondary": "#333",
"color-tertiary": "#767676",
"color-tertiary-soft": "#eef0f2",
"color-tertiary-bg": "#f2f3f5",
"color-quaternary": "#fff",
},
fontFamily: {
"darker-grotesque": ["Darker Grotesque", "sans-serif"],
},
keyframes: {
"fade-in": {
"0%": {
opacity: "0",
},
"25%": {
opacity: "0.25",
},
"50%": {
opacity: "0.5",
},
"75%": {
opacity: "0.75",
},
"100%": {
opacity: "1",
},
},
},
animation: {
"fade-in": "fade-in 0.8s ease-in 1",
},
},
},
daisyui: {
themes: false,
},
// eslint-disable-next-line no-undef
plugins: [require("daisyui")],
};