Skip to content

Commit 6461dff

Browse files
committed
fixed linting issues
1 parent 33db5fb commit 6461dff

File tree

2 files changed

+26
-26
lines changed

2 files changed

+26
-26
lines changed

client/styles/abstracts/_variables.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $orange: #ffa500;
99
$red: #ff0000;
1010
$lightsteelblue: #B0C4DE;
1111
$dodgerblue: #1E90FF;
12-
$icon-color: #8b8b8b;
12+
$icon-color: #666;
1313
$icon-hover-color: #333;
1414
$p5-contrast-pink: #FFA9D9;
1515

@@ -28,8 +28,8 @@ $themes: (
2828
dropzone-text-color: #333,
2929
modal-button-color: #333,
3030
heading-text-color: #333,
31-
secondary-text-color: #a8a8a8,
32-
inactive-text-color: #b5b5b5,
31+
secondary-text-color: #666,
32+
inactive-text-color: #666,
3333
background-color: #fbfbfb,
3434
preview-placeholder-color: #dcdcdc,
3535
button-background-color: #f4f4f4,
@@ -53,7 +53,7 @@ $themes: (
5353
console-background-color: #eee,
5454
console-color: $white,
5555
console-header-background-color: #d6d6d6,
56-
console-header-color: #b1b1b1,
56+
console-header-color: #1c1c1c,
5757
console-info-background-color: $lightsteelblue,
5858
console-warn-background-color: $orange,
5959
console-debug-background-color: $dodgerblue,

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

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
//light gray: #f4f4f4
1111
//dark gray: #b5b5b5
1212

13-
$p5-light-lightbrown: #A67F59;
13+
$p5-light-lightbrown: #7a5a3a;
1414
$p5-light-brown: #704F21;
1515
$p5-light-black: #333333;
16-
$p5-light-pink: #D9328F;
17-
$p5-light-gray: #A0A0A0;
18-
$p5-light-lightblue: #00A1D3;
19-
$p5-light-darkblue: #2D7BB6;
16+
$p5-light-pink: #be3652;
17+
$p5-light-gray: #666;
18+
$p5-light-lightblue: #007bbb;
19+
$p5-light-darkblue: #306bb4;
2020
$p5-light-white: #FDFDFD;
2121
$p5-light-orange: #EE9900;
2222
$p5-light-lightgray: #E0D7D1;
2323
$p5-light-darkgray: #666666;
24-
$p5-light-green: #58a10b;
24+
$p5-light-green: #008007;
2525

2626
$p5-light-gutter: #f4f4f4;
2727
$p5-light-number: #b5b5b5;
@@ -33,55 +33,55 @@ $p5-light-activeline: rgb(207, 207, 207);
3333
color: $p5-light-black;
3434
}
3535

36-
.cm-s-p5-light .cm-comment {
36+
.cm-s-p5-light span .cm-comment {
3737
color: $p5-light-gray;
3838
}
3939

40-
.cm-s-p5-light .cm-def {
40+
.cm-s-p5-light span .cm-def {
4141
color: $p5-light-lightblue;
4242
}
4343

44-
.cm-s-p5-light .cm-string {
44+
.cm-s-p5-light span .cm-string {
4545
color: $p5-light-green;
4646
}
4747

48-
.cm-s-p5-light .cm-string-2 {
48+
.cm-s-p5-light span .cm-string-2 {
4949
color: $p5-light-orange;
5050
}
5151

52-
.cm-s-p5-light .cm-number {
52+
.cm-s-p5-light span .cm-number {
5353
color: $p5-light-black;
5454
}
5555

5656
.cm-s-p5-light .cm-keyword {
5757
color: $p5-light-brown;
5858
}
5959

60-
.cm-s-p5-light .cm-variable {
60+
.cm-s-p5-light span .cm-variable {
6161
color: $p5-light-lightblue;
6262
}
6363

64-
.cm-s-p5-light .cm-variable2 {
64+
.cm-s-p5-light span .cm-variable2 {
6565
color: $p5-light-black;
6666
}
6767

68-
.cm-s-p5-light .cm-property {
68+
.cm-s-p5-light span .cm-property {
6969
color: $p5-light-black;
7070
}
7171

72-
.cm-s-p5-light .cm-atom {
72+
.cm-s-p5-light span .cm-atom {
7373
color: $p5-light-pink;
7474
}
7575

76-
.cm-s-p5-light .cm-operator {
76+
.cm-s-p5-light span .cm-operator {
7777
color: $p5-light-lightbrown;
7878
}
7979

8080
.cm-s-p5-light .cm-linenumber {
8181
color: $p5-light-number;
8282
}
8383

84-
.cm-s-p5-light .CodeMirror-selected {
84+
.cm-s-p5-light div .CodeMirror-selected {
8585
background-color: $p5-light-selected;
8686
}
8787

@@ -97,25 +97,25 @@ $p5-light-activeline: rgb(207, 207, 207);
9797
color: #f00;
9898
}
9999

100-
.cm-s-p5-light .CodeMirror-matchingbracket {
100+
.cm-s-p5-light span .CodeMirror-matchingbracket {
101101
outline: 1px solid $p5-light-gray;
102102
outline-offset: 1px;
103103
color: $p5-light-black !important;
104104
}
105105

106-
.cm-s-p5-light .cm-qualifier {
106+
.cm-s-p5-light span .cm-qualifier {
107107
color: $p5-light-lightblue;
108108
}
109109

110-
.cm-s-p5-light .cm-tag {
110+
.cm-s-p5-light span .cm-tag {
111111
color: $p5-light-pink;
112112
}
113113

114-
.cm-s-p5-light .cm-builtin {
114+
.cm-s-p5-light span .cm-builtin {
115115
color: $p5-light-lightblue;
116116
}
117117

118-
.cm-s-p5-light .cm-attribute {
118+
.cm-s-p5-light span .cm-attribute {
119119
color: $p5-light-black;
120120
}
121121

0 commit comments

Comments
 (0)