1.7 KB53 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
8.dark-theme,
9.vscode-dark {
10 /*
11 * VS Code Webview UI Toolkit theme colors.
12 * Note that these are only needed outside of vscode.
13 */
14 --background: #1e1e1e;
15 --focus-border: #4d8a78;
16 --foreground: #cccccc;
17 --scrollbar-slider-background: #79797966;
18 --scrollbar-slider-hover-background: #646464b3;
19 --scrollbar-slider-active-background: #bfbfbf66;
20 --badge-background: #4d4d4d;
21 --badge-foreground: #ffffff;
22 --button-border: transparent;
23 --button-icon-background: transparent;
24 --button-icon-hover-background: rgba(90, 93, 94, 0.31);
25 --button-primary-background: #4d8a78;
26 --button-primary-foreground: #ffffff;
27 --button-primary-hover-background: #5b9e8a;
28 --button-secondary-background: #3a3d41;
29 --button-secondary-foreground: #ffffff;
30 --button-secondary-hover-background: #45494e;
31 --checkbox-background: #3c3c3c;
32 --checkbox-border: #3c3c3c;
33 --checkbox-foreground: #f0f0f0;
34 --list-active-selection-background: #1e3d33;
35 --list-active-selection-foreground: #ffffff;
36 --list-hover-background: #2a2d2e;
37 --divider-background: #454545;
38 --dropdown-background: #3c3c3c;
39 --dropdown-border: #3c3c3c;
40 --dropdown-foreground: #f0f0f0;
41 --input-background: #3c3c3c;
42 --input-foreground: #cccccc;
43 --input-placeholder-foreground: #cccccc;
44 --link-active-foreground: #6bb3a0;
45 --link-foreground: #6bb3a0;
46 --progress-background: #4d8a78;
47 --panel-tab-active-border: #e7e7e7;
48 --panel-tab-active-foreground: #e7e7e7;
49 --panel-tab-foreground: #e7e7e799;
50 --panel-view-background: #1e1e1e;
51 --panel-view-border: #80808059;
52}
53