-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
106 lines (102 loc) · 2.94 KB
/
tailwind.config.ts
File metadata and controls
106 lines (102 loc) · 2.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
scale: {
"102": "1.02",
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [require("daisyui")],
darkMode: ['selector', '[data-theme="dark"]'],
daisyui: {
themes: [
{
"dark": {
primary: "#14CD5B",
info: "#303133",
"primary-content": "#02190B",
"base-100": "#050806",
"base-content": "#D9D9D9",
".container-default": {
"border-color": "#101211",
"border-width": "2.5px",
"border-style": "solid",
"border-radius": "15px",
"background-color": "#050806",
padding: "1.5rem",
},
".bg-primary-lighter": { "background-color": "#72E19D" },
".container-fit": {
"border-color": "#101211",
"border-width": "2.5px",
"border-style": "solid",
"border-radius": "15px",
"background-color": "#050806",
},
".text-subtitle": {
color: "#D9D9D9",
opacity: 0.8,
},
".text-subtitle-darker": {
color: "#D9D9D9",
opacity: 0.6,
"font-size": "1rem",
},
".scrollbar-primary": {
"scrollbar-color": "#14CD5B",
},
},
"light": {
primary: "#14CD5B",
info: "#303133",
"primary-content": "#02190B",
"base-100": "#F0F2F2",
"base-content": "#0C0D0C",
".container-default": {
"border-color": "transparent",
"border-width": "2.5px",
"border-style": "solid",
"border-radius": "15px",
"box-shadow":
"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);",
"background-color": "#F0F2F2",
padding: "1.5rem",
},
".bg-primary-lighter": { "background-color": "#72E19D" },
".container-fit": {
"border-width": "2.5px",
"border-color": "transparent",
"border-style": "solid",
"border-radius": "15px",
"background-color": "#F0F2F2",
"box-shadow":
"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);",
},
".text-subtitle": {
color: "#0C0D0C",
opacity: 0.8,
},
".text-subtitle-darker": {
color: "#0C0D0C",
opacity: 0.6,
"font-size": "1rem",
},
".scrollbar-primary": {
"scrollbar-color": "#14CD5B",
},
},
},
],
},
};
export default config;