-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
76 lines (73 loc) · 1.92 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
import daisyui from "daisyui";
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
key: {
light: "#c7c9cc",
dark: "#313531",
},
},
},
screens: {
phone: "320px",
tablet: "640px",
laptop: "1024px",
desktop: "1280px",
},
},
plugins: [daisyui],
daisyui: {
themes: [
{
dark: {
primary: "#eb6732",
"primary-content": "#130401",
secondary: "#c45060",
"secondary-content": "#0e0203",
accent: "#0089ff",
"accent-content": "#000716",
neutral: "#f5f5f4",
"neutral-content": "#151514",
"base-100": "#1f231f",
"base-200": "#191d19",
"base-300": "#090b09",
"base-content": "#cdcecd",
info: "#165dba",
"info-content": "#d0dff3",
success: "#00a801",
"success-content": "#000a00",
warning: "#d8bd3a",
"warning-content": "#161006",
error: "#b24052",
"error-content": "#f3d9da",
},
light: {
primary: "#eb6732",
"primary-content": "#130401",
secondary: "#c45060",
"secondary-content": "#0e0203",
accent: "#0089ff",
"accent-content": "#000716",
neutral: "#e5e7eb",
"neutral-content": "#121313",
"base-100": "#f3f4f6",
"base-200": "#d3d4d6",
"base-300": "#9c9da0",
"base-content": "#141415",
info: "#165dba",
"info-content": "#d0dff3",
success: "#00a801",
"success-content": "#000a00",
warning: "#ffd687",
"warning-content": "#161006",
error: "#b24052",
"error-content": "#f3d9da",
},
},
],
},
darkMode: ["class", '[data-theme="dark"]'],
} as Config;