133 lines
2.3 KiB
SCSS
133 lines
2.3 KiB
SCSS
// 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;
|
|
|
|
|
|
$p5-light-gutter: #f4f4f4;
|
|
$p5-light-number: #b5b5b5;
|
|
$p5-light-selected: rgba(45, 123, 182, 25);
|
|
$p5-light-activeline: rgb(207, 207, 207);
|
|
|
|
.cm-s-p5-light {
|
|
background-color: $p5-light-white;
|
|
color: $p5-light-black;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-comment {
|
|
color: $p5-light-lightgray;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-def {
|
|
color: $p5-light-blue;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-string {
|
|
color: $p5-light-green;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-string-2 {
|
|
color: $p5-light-orange;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-number {
|
|
color: $p5-light-black;
|
|
}
|
|
|
|
.cm-s-p5-light .cm-keyword {
|
|
color: $p5-light-brown;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-variable {
|
|
color: $p5-light-blue;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-variable2 {
|
|
color: $p5-light-black;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-property {
|
|
color: $p5-light-black;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-atom {
|
|
color: $p5-light-pink;
|
|
}
|
|
|
|
.cm-s-p5-light span .cm-operator {
|
|
color: $p5-light-brown;
|
|
}
|
|
|
|
.cm-s-p5-light .cm-linenumber {
|
|
color: $p5-light-number;
|
|
}
|
|
|
|
.cm-s-p5-light div .CodeMirror-selected {
|
|
background-color: $p5-light-selected;
|
|
}
|
|
|
|
.cm-s-p5-light .CodeMirror-activeline-background {
|
|
background-color: $light;
|
|
}
|
|
|
|
.cm-s-p5-light .CodeMirror-activeline-gutter {
|
|
background-color: $light;
|
|
border-right: 1px solid $medium-light;
|
|
}
|
|
|
|
.cm-s-p5-light .cm-error {
|
|
color: #f00;
|
|
}
|
|
|
|
.cm-s-p5-light span .CodeMirror-matchingbracket {
|
|
outline: 1px solid $p5-light-gray;
|
|
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;
|
|
}
|
|
|
|
.cm-s-p5-light .CodeMirror-foldmarker {
|
|
background-color: #333;
|
|
color: white;
|
|
}
|