-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpycharm.css
More file actions
59 lines (57 loc) · 1.69 KB
/
pycharm.css
File metadata and controls
59 lines (57 loc) · 1.69 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
/* Pycharm like theme */
:root {
/* Editor color */
--ui-text-color:white;
--resizer-bg-color:#505050;
--toplevel-bg-color: #3c3f41;
/* Help*/
--help-bg-color: #3c3f41;
--help-margin-color: #2b2b2b;
/* Nav */
--nav-bg-color: #3c3f41;
--nav-unselected-tab-bg-color: #303030;
--nav-unselected-tab-text-color: #9f9f9f;
--nav-selected-tab-bg-color: #2b2b2b;
--nav-selected-tab-text-color: white;
--nav-close-btn-bg-color:#3c3f41;
/* Editor */
--editor-bg-color: #2b2b2b;
--editor-gutter-bg-color:#2b2b2b;
--editor-gutter-text-color:#808080;
--editor-cursor-color: #fc0;
--editor-selection-bg-color: rgba(33, 66, 131, 1);
--editor-code-highlight-color: rgba(66, 132, 255, .1);
/* Scrollbar */
--scrollbar-bg-color: #2b2b2b;
--scrollbar-track-color: #303030;
/* Preloader */
--preloader-bg-color: #263238;
--preloader-progress-bar-color: whitesmoke;
/* Form */
--form-dropdown-bg-color: #2b2b2b;
--form-dropdown-text-color: white;
--form-switch-border-color: 808080;
--form-button-bg-color:#454646;
--action-button: #3c3f41;
/* Code color */
--code-text-color: white;
--code-caml:rgb(110, 110, 201);
--code-error:#ff5370;
--code-string:#629755;
--code-number:#6897bb;
--code-constant:#ffcb6b;
--code-keyword:#cc7832;
--code-operator:#a9b7c6;
--code-variable:#a9b7c6;
--code-builtin:#ffc66d;
--code-atom:#f78c6c;
--code-def:#82aaff;
--code-comment:#808080;
--code-brackets:#fff;
--code-escape:#409290;
--code-symbol:#94558D;
--code-tag:#ff5370;
--code-meta:#ffcb6b;
--code-attribute:#cc7832;
--code-qualifier: #8888C6;
}