-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (58 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
padding: {
layout: "0.8rem 15rem",
},
colors: {
bold: "#0D141C",
"bold-t": "rgba(13, 20, 28, 0.9)",
"switch-container": "rgba(13, 20, 28, 0.5)",
light: "#4F7396",
"slider-container": "rgba(0,0,0, 0.2)",
},
backgroundImage: {
"intro-image": "url(assets/tree.png)",
"intro-image-color":
"linear-gradient(to bottom, rgba(0,0,0, 0.2), rgba(0,0,0, 0.7))",
},
animation: {
appear: "appear 0.2s ease-in-out alternate",
},
keyframes: {
appear: {
from: { opacity: 0 },
to: { opacity: 1 },
},
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: false,
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
".border-base": {
"border-color": "oklch(21.1484% 0.01165 254.087939)",
},
".bg-card": {
"background-color": "#1D232A",
},
},
dark: {
...require("daisyui/src/theming/themes")["dark"],
".border-base": {
"border-color": "oklch(92.4169% 0.00108 197.137559)",
},
".bg-card": {
"background-color": "#E5E6E6",
},
},
},
],
},
};