2.2 KB78 lines
Blame
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8html .dark-theme,
9html .vscode-dark {
10 color-scheme: dark;
11
12 --scm-modified-foreground: #e2c08d;
13 --scm-added-foreground: #73c991;
14 --scm-removed-foreground: #f3674f;
15 --scm-missing-foreground: #b4eaed;
16 --selected-commit-background: rgba(255, 255, 255, 0.1);
17
18 --error-fg-color: #f3674f;
19 --error-bg-color: #f3674f20;
20
21 --tooltip-background: var(--vscode-editorWidget-background, #252526);
22 --tooltip-border: var(--vscode-editorWidget-border, #454545);
23
24 --hover-darken: rgba(255, 255, 255, 0.1);
25 --subtle-hover-darken: rgba(255, 255, 255, 0.03);
26 --highlight-foreground: #f0f0f0;
27
28 --selection-mix-mode: lighten;
29
30 /* github PR colors */
31 --github-badge-fg: white;
32 --github-open-bg: #238636;
33 --github-closed-bg: #da3633;
34 --github-merged-bg: #8957e5;
35 --github-neutral-bg: #6e7781;
36
37 /* Editor colors */
38 --diffEditor-foreground: rgb(201, 209, 217);
39 --diffEditor-insertedLineHighlightBackground: var(
40 --vscode-diffEditor-insertedTextBackground,
41 rgba(156, 204, 44, 0.2)
42 );
43 --diffEditor-removedLineHighlightBackground: var(
44 --vscode-diffEditor-removedTextBackground,
45 rgba(255, 0, 0, 0.2)
46 );
47 --diffEditor-insertedLineBackground: var(
48 --vscode-diffEditor-insertedLineBackground,
49 rgba(155, 185, 85, 0.2)
50 );
51 --diffEditor-removedLineBackground: var(
52 --vscode-diffEditor-removedLineBackground,
53 rgba(255, 0, 0, 0.2)
54 );
55
56 --diffEditor-modifiedLineBackground: #deb94033;
57 --diffEditor-modifiedLineHighlightBackground: #deb94066;
58 --editor-selectionBackground: #264f78;
59 --editor-changedBackground: hsla(212, 90%, 70%, 0.15);
60 --editor-changedHighlightBackground: hsla(212, 90%, 70%, 0.3);
61
62 --hint-background: rgba(252, 193, 43, 0.2);
63
64 --banner-fg: rgb(235, 236, 237);
65 --banner-warning-bg: #deb94066;
66 --banner-error-bg: #fa7e7c55;
67 --banner-default-bg: #45454577;
68 --banner-green-bg: #73a280;
69
70 /* Signal colors */
71 --signal-good-bg: #2da44e;
72 --signal-medium-bg: #e0d12d;
73 --signal-bad-bg: #cf222e;
74 --signal-fg: white;
75
76 --checkbox-border: var(--vscode-contrastBorder, rgba(255, 255, 255, 0.2));
77}
78