-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
102 lines (86 loc) · 2.49 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
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: ["Space Grotesk", "sans-serif"],
mono: ["Roboto Mono", "monospace"],
},
extend: {
animation: {
marquee: "marquee-horizontal 15s linear infinite",
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
black: {
primary: "#ffffff",
"primary-focus": "#ffffff",
"primary-content": "#000000",
secondary: "#ffffff",
"secondary-focus": "#ffffff",
"secondary-content": "#000000",
accent: "#ffffff",
"accent-focus": "#ffffff",
"accent-content": "#000000",
neutral: "#333333",
"neutral-focus": "#4d4d4d",
"neutral-content": "#ffffff",
"base-100": "#ffffff",
"base-200": "#333333",
"base-300": "#4d4d4d",
"base-content": "#000000",
info: "#0000ff",
success: "#008000",
warning: "#ffff00",
error: "#ff0000",
"--rounded-box": "0",
"--rounded-btn": "0",
"--rounded-badge": "0",
"--animation-btn": "0",
"--animation-input": "0",
"--btn-text-case": "lowercase",
"--navbar-padding": "0.5rem",
"--border-btn": "1px",
},
wireframe: {
primary: "#b8b8b8",
"primary-focus": "#b8b8b8",
"primary-content": "#000000",
secondary: "#b8b8b8",
"secondary-focus": "#b8b8b8",
"secondary-content": "#000000",
accent: "#b8b8b8",
"accent-focus": "#b8b8b8",
"accent-content": "#000000",
neutral: "#ebebeb",
"neutral-focus": "#ebebeb",
"neutral-content": "#000000",
"base-100": "#ffffff",
"base-200": "#ffffff",
"base-300": "#ffffff",
"base-content": "#000000",
info: "#0000ff",
success: "#008000",
warning: "#a6a659",
error: "#ff0000",
"--rounded-box": "0",
"--rounded-btn": "0.2rem",
"--rounded-badge": "0.2rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-text-case": "uppercase",
"--navbar-padding": "0.5rem",
"--border-btn": "1px",
},
},
],
},
};