1.8 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.light-theme,
9.vscode-light {
10 /*
11 * VS Code Webview UI Toolkit theme colors.
12 * Note that these are only needed outside of vscode.
13 */
14 --background: #ffffff;
15 --focus-border: #4d8a78;
16 --foreground: #616161;
17 --scrollbar-slider-background: rgba(100, 100, 100, 0.4);
18 --scrollbar-slider-hover-background: rgba(100, 100, 100, 0.7);
19 --scrollbar-slider-active-background: rgba(0, 0, 0, 0.6);
20 --badge-background: #c4c4c4;
21 --badge-foreground: #333333;
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: #3d7063;
28 --button-secondary-background: #5f6a79;
29 --button-secondary-foreground: #ffffff;
30 --button-secondary-hover-background: #4c5561;
31 --checkbox-background: #ffffff;
32 --checkbox-border: #cecece;
33 --checkbox-foreground: var(--foreground);
34 --list-active-selection-background: #3d7063;
35 --list-active-selection-foreground: #ffffff;
36 --list-hover-background: #e8e8e8;
37 --divider-background: #c8c8c8;
38 --dropdown-background: #ffffff;
39 --dropdown-border: #cecece;
40 --dropdown-foreground: var(--foreground);
41 --input-background: #ffffff;
42 --input-foreground: #616161;
43 --input-placeholder-foreground: #767676;
44 --link-active-foreground: #3d7063;
45 --link-foreground: #3d7063;
46 --progress-background: #4d8a78;
47 --panel-tab-active-border: #424242;
48 --panel-tab-active-foreground: #424242;
49 --panel-tab-foreground: rgba(66, 66, 66, 0.75);
50 --panel-view-background: #ffffff;
51 --panel-view-border: rgba(128, 128, 128, 0.35);
52}
53