2.2 KB77 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 .light-theme,
9html .vscode-light {
10 color-scheme: light;
11
12 /* custom values **/
13 --scm-modified-foreground: #895503;
14 --scm-added-foreground: #007100;
15 --scm-removed-foreground: #ad0707;
16 --scm-missing-foreground: #418c91;
17 --selected-commit-background: rgba(0, 0, 0, 0.1);
18 --tooltip-background: var(--vscode-editorWidget-background, #f3f3f3);
19 --tooltip-border: var(--vscode-editorWidget-border, #c8c8c8);
20
21 --error-fg-color: #e35941ff;
22 --error-bg-color: #e3594120;
23
24 --hover-darken: rgba(0, 0, 0, 0.1);
25 --subtle-hover-darken: rgba(0, 0, 0, 0.03);
26 --highlight-foreground: #2a2a2a;
27
28 --selection-mix-mode: darken;
29
30 /* github PR colors */
31 --github-badge-fg: white;
32 --github-open-bg: #2da44e;
33 --github-closed-bg: #cf222e;
34 --github-merged-bg: #8250df;
35 --github-neutral-bg: #6e7781;
36
37 /* Editor colors */
38 --diffEditor-foreground: rgb(36, 41, 47);
39 --diffEditor-insertedLineHighlightBackground: var(
40 --vscode-diffEditor-insertedTextBackground,
41 rgba(156, 204, 44, 0.25)
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: #f9ec5633;
57 --diffEditor-modifiedLineHighlightBackground: #f9ec5666;
58 --editor-selectionBackground: #add6ff;
59 --editor-changedBackground: hsla(211, 100%, 87%, 0.3);
60 --editor-changedHighlightBackground: hsla(211, 100%, 87%, 0.5);
61
62 --hint-background: rgba(241, 168, 23, 0.2);
63
64 --banner-fg: rgb(36, 41, 47);
65 --banner-warning-bg: #f9ec5666;
66 --banner-error-bg: #fa7e7c66;
67 --banner-default-bg: var(--tooltip-background);
68 --banner-green-bg: #b0ddbd;
69
70 --signal-good-bg: #2da44e;
71 --signal-medium-bg: #d5b14e;
72 --signal-bad-bg: #cf222e;
73 --signal-fg: white;
74
75 --checkbox-border: var(--vscode-contrastBorder, rgba(0, 0, 0, 0.2));
76}
77