-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
84 lines (83 loc) · 2.22 KB
/
tailwind.config.js
File metadata and controls
84 lines (83 loc) · 2.22 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
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
fade: "fadeIn 2s ease-in-out",
"fade-lg": "fadeInDelay 3s ease-in-out",
"fade-xl": "fadeInDelay 5s ease-in-out",
"move-fade": "moveFadeIn 4s ease-in-out forwards",
},
keyframes: {
fadeIn: {
from: { opacity: 0 },
to: { opacity: 1 },
},
fadeInDelay: {
"0%, 40%": { opacity: 0 },
"100%": { opacity: 1 },
},
moveFadeIn: {
"0%, 20%": { transform: "translateY(2rem)", opacity: 0 },
"100%": { transform: "translateY(-1rem)", opacity: 0.05 },
},
},
fontWeight: {
thin: "100",
extralight: "200",
light: "300",
normal: "400",
medium: "500",
semibold: "600",
bold: "700",
"extra-bold": "800",
black: "900",
},
fontFamily: {
sans: ["Archivo"],
display: ["ClashDisplay"],
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
oatsfx: {
primary: "#1995ff",
"primary-focus": "#1995ff",
"primary-content": "#ffffff",
secondary: "#ea3381",
"secondary-focus": "#ea3381",
"secondary-content": "#ffffff",
accent: "#d99330",
"accent-focus": "#b57721",
"accent-content": "#ffffff",
neutral: "#110e0e",
"neutral-focus": "#060404",
"neutral-content": "#ffffff",
"base-100": "#eefaff",
"base-200": "#110e0e",
"base-300": "#0f0c0c",
"base-content": "#292a2b",
info: "#66c7ff",
success: "#87cf3a",
warning: "#e1d460",
error: "#ff6b6b",
"--rounded-box": "1rem",
"--rounded-btn": ".5rem",
"--rounded-badge": "1.9rem",
"--animation-btn": ".25s",
"--animation-input": ".2s",
"--btn-text-case": "uppercase",
"--navbar-padding": ".5rem",
"--border-btn": "1px",
},
},
],
},
};