p5.js-web-editor/client/styles/components/_p5-light-codemirror-theme....

134 lines
2.3 KiB
SCSS
Raw Normal View History

2016-09-15 19:10:53 +02:00
// brown: #6C4D13
// black: #333
// blue: #0F9DD7
// pink: #D9328F
// gray: #999999
// dark blue: #318094
// white: #fdfdfd
//numbers
//light gray: #f4f4f4
//dark gray: #b5b5b5
$p5-light-brown: #7A5A3A;
$p5-light-black: #333333;
$p5-light-pink: #D52889;
$p5-light-gray: #666;
$p5-light-blue: #0B7CA9;
$p5-light-white: $lighter;
$p5-light-orange: #A06801;
$p5-light-lightgray: $middle-gray;
$p5-light-green: #47820A;
2016-09-15 19:10:53 +02:00
$p5-light-gutter: #f4f4f4;
$p5-light-number: #b5b5b5;
$p5-light-selected: rgba(45, 123, 182, 25);
$p5-light-activeline: rgb(207, 207, 207);
2016-05-03 22:13:04 +02:00
2016-09-20 17:51:09 +02:00
.cm-s-p5-light {
2016-09-15 19:10:53 +02:00
background-color: $p5-light-white;
color: $p5-light-black;
}
.cm-s-p5-light span .cm-comment {
color: $p5-light-lightgray;
2016-09-15 19:10:53 +02:00
}
.cm-s-p5-light span .cm-def {
color: $p5-light-blue;
}
.cm-s-p5-light span .cm-string {
color: $p5-light-green;
2016-09-15 19:10:53 +02:00
}
.cm-s-p5-light span .cm-string-2 {
color: $p5-light-orange;
}
.cm-s-p5-light span .cm-number {
color: $p5-light-black;
2016-09-15 19:10:53 +02:00
}
2016-09-20 17:51:09 +02:00
.cm-s-p5-light .cm-keyword {
color: $p5-light-brown;
2016-09-15 19:10:53 +02:00
}
.cm-s-p5-light span .cm-variable {
color: $p5-light-blue;
2016-09-15 19:10:53 +02:00
}
.cm-s-p5-light span .cm-variable2 {
2016-09-15 20:14:36 +02:00
color: $p5-light-black;
}
.cm-s-p5-light span .cm-property {
2016-09-15 20:14:36 +02:00
color: $p5-light-black;
}
.cm-s-p5-light span .cm-atom {
2016-09-15 20:14:36 +02:00
color: $p5-light-pink;
}
.cm-s-p5-light span .cm-operator {
color: $p5-light-brown;
2016-09-15 20:14:36 +02:00
}
2016-09-20 17:51:09 +02:00
.cm-s-p5-light .cm-linenumber {
color: $p5-light-number;
2016-09-15 20:14:36 +02:00
}
.cm-s-p5-light div .CodeMirror-selected {
background-color: $p5-light-selected;
}
2016-09-20 17:51:09 +02:00
.cm-s-p5-light .CodeMirror-activeline-background {
2020-04-28 00:34:53 +02:00
background-color: $light;
}
2016-09-20 17:51:09 +02:00
.cm-s-p5-light .CodeMirror-activeline-gutter {
2020-04-28 00:34:53 +02:00
background-color: $light;
border-right: 1px solid $medium-light;
}
2016-09-20 17:51:09 +02:00
.cm-s-p5-light .cm-error {
color: #f00;
}
.cm-s-p5-light span .CodeMirror-matchingbracket {
outline: 1px solid $p5-light-gray;
2018-11-07 21:07:06 +01:00
outline-offset: 1px;
color: $p5-light-black !important;
}
.cm-s-p5-light span .cm-qualifier {
color: $p5-light-blue;
}
.cm-s-p5-light span .cm-tag {
color: $p5-light-pink;
}
.cm-s-p5-light span .cm-builtin {
color: $p5-light-blue;
}
.cm-s-p5-light span .cm-attribute {
color: $p5-light-black;
}
.cm-s-p5-light .cm-p5-function {
color: $p5-light-blue;
font-weight: bold;
}
.cm-s-p5-light .cm-p5-variable {
color: $p5-light-pink;
}
2017-10-11 23:31:23 +02:00
.cm-s-p5-light .CodeMirror-foldmarker {
background-color: #333;
color: white;
}