返回 slidev
vars.css
根目录 / packages / client / styles / vars.css
1 :root {
2 --slidev-code-background: #f5f5f5;
3 --slidev-code-foreground: #1b1b1b;
4 --slidev-code-font-family: theme('fontFamily.mono');
5 --slidev-code-padding: 8px;
6 --slidev-code-font-size: 12px;
7 --slidev-code-line-height: 18px;
8 --slidev-code-radius: 4px;
9 --slidev-code-margin: 4px 0;
10 --slidev-theme-primary: #3ab9d5;
11
12 --slidev-transition-duration: 0.5s;
13 --slidev-slide-container-background: black;
14 --slidev-controls-foreground: white;
15
16 --slidev-code-tab-divider: #e5e5e5;
17 --slidev-code-tab-text-color: #67676c;
18 --slidev-code-tab-font-size: 12px;
19 --slidev-code-tab-active-text-color: #3c3c43;
20 }
21
22 html.dark {
23 --slidev-code-background: #1b1b1b;
24 --slidev-code-foreground: #eee;
25 --slidev-code-tab-divider: #222222;
26 --slidev-code-tab-text-color: #98989f;
27 --slidev-code-tab-active-text-color: #dfdfd6;
28 }
29
29 lines CSS