Skip to content

Commit 2744ea4

Browse files
authored
Merge pull request #1342 from Eswaraprasadp/modify/dark-theme
Modify dark theme
2 parents 7f8ab3c + c1d0cce commit 2744ea4

File tree

1 file changed

+32
-28
lines changed

1 file changed

+32
-28
lines changed

client/styles/components/_p5-dark-codemirror-theme.scss

Lines changed: 32 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -14,75 +14,77 @@ $p5-dark-lightbrown: #A67F59;
1414
$p5-light-green: #42F48F;
1515
$p5-dark-black: #333;
1616
$p5-dark-pink: #D9328F;
17-
$p5-dark-gray: #A0A0A0;
18-
$p5-dark-lightblue: #00A1D3;
19-
$p5-dark-darkblue: #2D7BB6;
17+
$p5-dark-gray: #999999;
18+
$p5-dark-lightblue: #0F9DD7;
19+
$p5-dark-darkblue: #318094;
2020
$p5-dark-white: #FDFDFD;
2121
$p5-dark-orange: #EE9900;
2222
$p5-dark-lightgray: #E0D7D1;
2323
$p5-dark-darkgray: #666666;
2424
$p5-dark-green: #58a10b;
25-
$p5-dark-goldbrown: #b58317;
25+
$p5-dark-goldbrown: #b58318;
2626

2727
$p5-dark-gutter: #f4f4f4;
2828
$p5-dark-number: #b5b5b5;
2929
$p5-dark-selected: rgba(45, 123, 182, 25);
3030
$p5-dark-activeline: rgb(207, 207, 207);
3131

32+
$p5-dark-error: #df3a3d;
33+
3234
.cm-s-p5-dark {
3335
background-color: $p5-dark-black;
3436
color: $p5-dark-white;
3537
}
3638

37-
.cm-s-p5-dark .cm-comment {
39+
.cm-s-p5-dark span.cm-comment {
3840
color: $p5-dark-gray;
3941
}
4042

41-
.cm-s-p5-dark .cm-def {
42-
color: $p5-dark-darkblue;
43+
.cm-s-p5-dark span.cm-def {
44+
color: $p5-dark-lightblue;
4345
}
4446

45-
.cm-s-p5-dark .cm-string {
47+
.cm-s-p5-dark span.cm-string {
4648
color: $p5-dark-green;
4749
}
4850

49-
.cm-s-p5-dark .cm-string-2 {
51+
.cm-s-p5-dark span.cm-string-2 {
5052
color: $p5-dark-orange;
5153
}
5254

53-
.cm-s-p5-dark .cm-number {
55+
.cm-s-p5-dark span.cm-number {
5456
color: $p5-dark-white;
5557
}
5658

57-
.cm-s-p5-dark .cm-keyword {
59+
.cm-s-p5-dark span.cm-keyword {
5860
color: $p5-dark-goldbrown;
5961
}
6062

61-
.cm-s-p5-dark .cm-variable {
63+
.cm-s-p5-dark span.cm-variable {
6264
color: $p5-dark-lightblue;
6365
}
6466

65-
.cm-s-p5-dark .cm-variable-2 {
67+
.cm-s-p5-dark span.cm-variable-2 {
6668
color: $p5-dark-white;
6769
}
6870

69-
.cm-s-p5-dark .cm-property {
71+
.cm-s-p5-dark span.cm-property {
7072
color: $p5-dark-white;
7173
}
7274

73-
.cm-s-p5-dark .cm-atom {
75+
.cm-s-p5-dark span.cm-atom {
7476
color: $p5-dark-pink;
7577
}
7678

77-
.cm-s-p5-dark .cm-operator {
78-
color: $p5-dark-lightbrown;
79+
.cm-s-p5-dark span.cm-operator {
80+
color: $p5-dark-white;
7981
}
8082

8183
.cm-s-p5-dark .cm-linenumber {
8284
color: $p5-dark-number;
8385
}
8486

85-
.cm-s-p5-dark .CodeMirror-selected {
87+
.cm-s-p5-dark div.CodeMirror-selected {
8688
background-color: $p5-dark-selected;
8789
}
8890

@@ -95,34 +97,36 @@ $p5-dark-activeline: rgb(207, 207, 207);
9597
border-right: 1px solid #949494;
9698
}
9799

98-
.cm-s-p5-dark .cm-error {
99-
color: #f00;
100-
}
101-
102-
.cm-s-p5-dark .CodeMirror-matchingbracket {
100+
.cm-s-p5-dark span.CodeMirror-matchingbracket {
103101
outline: 1px solid $p5-dark-gray;
104102
outline-offset: 1px;
105103
color: $p5-dark-white !important;
106104
}
107105

108-
.cm-s-p5-dark .cm-qualifier {
106+
.cm-s-p5-dark span.cm-qualifier {
109107
color: $p5-dark-lightblue;
110108
}
111109

112-
.cm-s-p5-dark .cm-tag {
110+
.cm-s-p5-dark span.cm-tag {
113111
color: $p5-dark-pink;
114112
}
115113

116-
.cm-s-p5-dark .cm-builtin {
114+
.cm-s-p5-dark span.cm-error {
115+
color: $p5-dark-error;
116+
}
117+
118+
.cm-s-p5-dark span.cm-builtin {
117119
color: $p5-dark-lightblue;
120+
font-weight: bold;
118121
}
119122

120-
.cm-s-p5-dark .cm-attribute {
123+
.cm-s-p5-dark span.cm-attribute {
121124
color: $p5-dark-lightblue;
122125
}
123126

124127
.cm-s-p5-dark .cm-p5-function {
125-
color: $p5-dark-darkblue;
128+
color: $p5-dark-lightblue;
129+
font-weight: bold !important;
126130
}
127131

128132
.cm-s-p5-dark .cm-p5-variable {

0 commit comments

Comments
 (0)