-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{ts,tsx,jsx,js}"],
theme: {
extend: {
spacing: {
22: "5.5rem",
},
},
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
themes: [
{
"lichess-light": {
primary: "#F1F1F1",
secondary: "#4D4D4D",
accent: "#F0F0F0",
neutral: "#4D4D4D",
"base-100": "#EDEBE8",
info: "#87C6EE",
success: "#F0F0F0",
warning: "#F1B24B",
error: "#EA7175",
},
},
{
"lichess-dark": {
primary: "#373430",
secondary: "#2E2C29",
accent: "#393632",
neutral: "#2E2C29",
"base-100": "#161512",
info: "#87C6EE",
success: "#629923",
warning: "#BF811E",
error: "#EA7175",
"secondary-content": "#fcd34d", // amber-300
},
},
{
corporate: {
...require("daisyui/src/colors/themes")["[data-theme=corporate]"],
"secondary-content": "#f59e0b", // amber-500
},
},
],
},
};