-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaterial.css
More file actions
59 lines (57 loc) · 1.8 KB
/
Copy pathmaterial.css
File metadata and controls
59 lines (57 loc) · 1.8 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
/* Material theme */
:root {
/* Editor color */
--ui-text-color:white;
--resizer-bg-color:#505050;
--toplevel-bg-color: #202b30;
/* Help*/
--help-bg-color: #2a3439;
--help-margin-color: #455a6d;
/* Nav */
--nav-bg-color: #202b30;
--nav-unselected-tab-bg-color: #202a2d;
--nav-unselected-tab-text-color: #9f9f9f;
--nav-selected-tab-bg-color: #273237;
--nav-selected-tab-text-color: white;
--nav-close-btn-bg-color:#202b30;
/* Editor */
--editor-bg-color: #263238;
--editor-gutter-bg-color: #202b30;
--editor-gutter-text-color: #7ea5b7;
--editor-cursor-color: #fc0;
--editor-selection-bg-color: rgba(128, 203, 196, .2);
--editor-code-highlight-color: #3849519c;
/* Scrollbar */
--scrollbar-bg-color: #273237;
--scrollbar-track-color: #2a3439;
/* Preloader */
--preloader-bg-color: #263238;
--preloader-progress-bar-color: white;
/* Form */
--form-dropdown-bg-color: #252d32fc;
--form-dropdown-text-color: white;
--form-switch-border-color:#546e7a;
--form-button-bg-color:#454646;
--action-button: #37474f;
/* Code color */
--code-text-color: white;
--code-caml:rgb(110, 110, 201);
--code-error:#d9534f;
--code-string:#c3e88d;
--code-number:#ff5370;
--code-constant:#ffcb6b;
--code-keyword:#c792ea;
--code-operator:#89ddff;
--code-variable:#f07178;
--code-builtin:#ffcb6b;
--code-atom:#f78c6c;
--code-def:#EB00FF;
--code-comment:#546e7a;
--code-brackets:#fff;
--code-escape:#409290;
--code-symbol:#decb6b;
--code-tag:#ff5370;
--code-meta:#ffcb6b;
--code-attribute:#c792ea;
--code-qualifier: #decb6b;
}