-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinput.css
78 lines (77 loc) · 2.53 KB
/
input.css
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
@import "tailwindcss" source(none);
@plugin "@tailwindcss/typography";
@config "./tailwind.config.js";
@source "./internal/views/**/*.templ";
@plugin "daisyui" {
themes:
light --default,
dark --prefersdark;
}
@plugin "daisyui/theme" {
name: "light";
default: true;
prefersdark: false;
color-scheme: "light";
--color-base-100: oklch(92% 0 0);
--color-base-200: oklch(87% 0 0);
--color-base-300: oklch(70% 0 0);
--color-base-content: oklch(0% 0 0);
--color-primary: oklch(55% 0.135 66.442);
--color-primary-content: oklch(98% 0.018 155.826);
--color-secondary: oklch(53% 0.157 131.589);
--color-secondary-content: oklch(98% 0.031 120.757);
--color-accent: oklch(64% 0.222 41.116);
--color-accent-content: oklch(98% 0.016 73.684);
--color-neutral: oklch(43% 0 0);
--color-neutral-content: oklch(98% 0 0);
--color-info: oklch(52% 0.105 223.128);
--color-info-content: oklch(98% 0.019 200.873);
--color-success: oklch(50% 0.118 165.612);
--color-success-content: oklch(98% 0.018 155.826);
--color-warning: oklch(55% 0.195 38.402);
--color-warning-content: oklch(98% 0.016 73.684);
--color-error: oklch(52% 0.223 3.958);
--color-error-content: oklch(97% 0.014 343.198);
--radius-selector: 0.5rem;
--radius-field: 0.5rem;
--radius-box: 0.5rem;
--size-selector: 0.28125rem;
--size-field: 0.28125rem;
--border: 1px;
--depth: 1;
--noise: 0;
}
@plugin "daisyui/theme" {
name: "dark";
default: false;
prefersdark: true;
color-scheme: "dark";
--color-base-100: oklch(26% 0 0);
--color-base-200: oklch(20% 0 0);
--color-base-300: oklch(14% 0 0);
--color-base-content: oklch(97% 0 0);
--color-primary: oklch(79% 0.184 86.047);
--color-primary-content: oklch(28% 0.066 53.813);
--color-secondary: oklch(64% 0.2 131.684);
--color-secondary-content: oklch(98% 0.031 120.757);
--color-accent: oklch(64% 0.222 41.116);
--color-accent-content: oklch(98% 0.016 73.684);
--color-neutral: oklch(14% 0 0);
--color-neutral-content: oklch(98% 0 0);
--color-info: oklch(71% 0.143 215.221);
--color-info-content: oklch(98% 0.019 200.873);
--color-success: oklch(72% 0.219 149.579);
--color-success-content: oklch(98% 0.018 155.826);
--color-warning: oklch(70% 0.213 47.604);
--color-warning-content: oklch(98% 0.016 73.684);
--color-error: oklch(65% 0.241 354.308);
--color-error-content: oklch(97% 0.014 343.198);
--radius-selector: 0.5rem;
--radius-field: 0.5rem;
--radius-box: 0.5rem;
--size-selector: 0.28125rem;
--size-field: 0.28125rem;
--border: 1px;
--depth: 1;
--noise: 0;
}