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
|
<style>
/* light mode colors */
body {
--primary-color: #5871a2;
--primary-pale-color: #5871a233;
--primary-decoration-color: #5871a210;
--bg-color: #ffffff;
--text-color: #2f3030;
--text-pale-color: #767676;
--text-decoration-color: #a9a9a9;
--highlight-mark-color: #5f75b020;
--callout-note-color: #5871a2;
--callout-tip-color: #268556;
--callout-important-color: #885fc9;
--callout-warning-color: #ab6632;
--callout-caution-color: #c64e4e;
}
/* dark mode colors */
body.dark {
--primary-color: #6f8fd1;
--primary-pale-color: #6f8fd166;
--primary-decoration-color: #6f8fd112;
--bg-color: #1c1c1c;
--text-color: #c1c1c1;
--text-pale-color: #848484;
--text-decoration-color: #5f5f5f;
--highlight-mark-color: #8296cb3b;
--callout-note-color: #6f8fd1;
--callout-tip-color: #47976f;
--callout-important-color: #9776cd;
--callout-warning-color: #ad7a52;
--callout-caution-color: #d06161;
}
/* typography */
body {
--main-font: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
--code-font: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
--homepage-max-width: 768px;
--main-max-width: 768px;
--avatar-size: 60px;
--font-size: 16px;
--line-height: 1.75;
--img-border-radius: 0px;
--detail-border-radius: 0px;
--dark-mode-img-brightness: 0.75;
--dark-mode-chart-brightness: 0.75;
--inline-code-border-radius: 2px;
--inline-code-bg-color: var(--primary-decoration-color);
--block-code-border-radius: 0px;
--block-code-border-color: var(--primary-color);
--detail-border-color: var(--primary-color);
}
</style>
|