blob: fcb9dcc526eeac5ea17e9bec19e8982afea0d853 (
plain) (
blame)
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
|
@import "tailwindcss";
@plugin '@tailwindcss/typography';
@plugin "daisyui";
@plugin "@iconify/tailwind4" {
prefix: "iconify";
}
@plugin "daisyui/theme" {
name: "business";
default: true;
prefersdark: true;
color-scheme: "dark";
--color-base-100: #202020;
--color-base-200: #1c1c1c;
--color-base-300: #181818;
--color-base-content: #cdcdcd;
--color-primary: #feccd2;
--color-primary-content: #010515;
--color-secondary: #e9d4ff;
--color-secondary-content: #010515;
--color-accent: #ffa1ad;
--color-accent-content: #130402;
--color-neutral: #404040;
--color-neutral-content: #ffffff;
--color-info: #0291d5;
--color-info-content: #000710;
--color-success: #6bb187;
--color-success-content: #040b07;
--color-warning: #dbae5a;
--color-warning-content: #110b03;
--color-error: #ac3e31;
--color-error-content: #f2d8d4;
--radius-selector: 0.5rem;
--radius-field: 0.5rem;
--radius-box: 0.5rem;
--size-selector: 0.3125rem;
--size-field: 0.3125rem;
--border: 2px;
--depth: 1;
--noise: 0;
}
::selection {
background-color: var(--color-secondary);
color: var(--color-secondary-content);
}
* {
font-family: IBMPlexMono;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: DepartureMono;
}
code {
font-family: JetBrainsMono;
}
@font-face {
font-family: DepartureMono;
src: url("/fonts/DepartureMono-Regular.woff2");
}
@font-face {
font-family: IBMPlexMono;
src: url("/fonts/IBMPlexMono-Regular.woff2");
}
@font-face {
font-family: JetBrainsMono;
src: url("/fonts/JetBrainsMono-Regular.woff2");
}
|