-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmain.css
More file actions
80 lines (67 loc) · 3.04 KB
/
Copy pathmain.css
File metadata and controls
80 lines (67 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* Copyright 2021 Mathematic, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
body {
padding: 0;
}
/*
* Synchronize CSS variables between pdf.js and VS Code
*/
:root {
--main-color: var(--vscode-breadcrumb-foreground);
--body-bg-color: var(--vscode-editor-background);
--progressBar-color: var(--vscode-welcomePage-progress\.foreground);
--progressBar-bg-color: var(--vscode-welcomePage-progress\.background);
--progressBar-blend-color: color-mix(
in srgb,
var(--progressBar-color),
var(--progressBar-bg-color)
);
--scrollbar-color: rgb(from var(--vscode-breadcrumb-foreground) r g b / 0.4);
--scrollbar-bg-color: transparent;
--toolbar-icon-bg-color: var(--vscode-icon-foreground);
--toolbar-icon-opacity: 100%;
--toolbar-icon-hover-bg-color: var(--vscode-icon-foreground);
--sidebar-narrow-bg-color: rgb(
from var(--vscode-sideBar-background) r g b /
0.9
);
--sidebar-toolbar-bg-color: var(--vscode-sideBarSectionHeader-background);
--toolbar-bg-color: var(--vscode-breadcrumb-background);
--toolbar-border-color: var(--vscode-editorWidget-border);
--button-hover-color: var(--vscode-toolbar-hoverBackground);
--toggled-btn-color: var(--toolbar-icon-bg-color);
--toggled-btn-bg-color: var(--button-hover-color);
--toggled-hover-active-btn-color: var(--vscode-toolbar-activeBackground);
--dropdown-btn-bg-color: var(--vscode-dropdown-background);
--separator-color: var(--vscode-disabledForeground);
--field-color: var(--vscode-input-foreground);
--field-bg-color: var(--vscode-input-background);
--field-border-color: var(--vscode-input-border);
--treeitem-color: var(--vscode-list-inactiveSelectionForeground);
--treeitem-bg-color: var(--vscode-list-inactiveSelectionBackground);
--treeitem-hover-color: var(--vscode-list-activeSelectionForeground);
--treeitem-selected-color: var(--vscode-list-focusForeground);
--treeitem-selected-bg-color: var(--vscode-list-focusBackground);
--thumbnail-hover-color: var(--vscode-list-activeSelectionBackground);
--thumbnail-selected-color: var(--vscode-list-focusBackground);
--doorhanger-bg-color: var(--vscode-menu-background);
--doorhanger-border-color: var(--toolbar-border-color);
--doorhanger-hover-color: var(--vscode-menu-selectionForeground);
--doorhanger-hover-bg-color: var(--vscode-menu-selectionBackground);
--doorhanger-separator-color: var(--vscode-menu-separatorBackground);
--dialog-button-bg-color: var(--vscode-quickInput-background);
--dialog-button-hover-bg-color: var(--vscode-quickInputList-focusBackground);
}