2016-07-30 04:25:24 +00:00
|
|
|
/*
|
|
|
|
Name: Panda Syntax
|
|
|
|
Author: Siamak Mokhtari (http://github.com/siamak/)
|
|
|
|
CodeMirror template by Siamak Mokhtari (https://github.com/siamak/atom-panda-syntax)
|
|
|
|
*/
|
|
|
|
.cm-s-panda-syntax {
|
|
|
|
background: #292A2B;
|
|
|
|
color: #E6E6E6;
|
2016-10-10 13:15:29 +00:00
|
|
|
line-height: 1.5;
|
|
|
|
font-family: 'Operator Mono', 'Source Sans Pro', Menlo, Monaco, Consolas, Courier New, monospace;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
2016-10-10 13:15:29 +00:00
|
|
|
.cm-s-panda-syntax .CodeMirror-cursor { border-color: #ff2c6d; }
|
2016-07-30 04:25:24 +00:00
|
|
|
.cm-s-panda-syntax .CodeMirror-activeline-background {
|
2016-10-10 13:15:29 +00:00
|
|
|
background: rgba(99, 123, 156, 0.1);
|
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .CodeMirror-selected {
|
|
|
|
background: #FFF;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-comment {
|
|
|
|
font-style: italic;
|
|
|
|
color: #676B79;
|
|
|
|
}
|
2016-10-10 13:15:29 +00:00
|
|
|
.cm-s-panda-syntax .cm-operator {
|
|
|
|
color: #f3f3f3;
|
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-string {
|
2016-07-30 04:25:24 +00:00
|
|
|
color: #19F9D8;
|
|
|
|
}
|
2016-10-10 13:15:29 +00:00
|
|
|
.cm-s-panda-syntax .cm-string-2 {
|
|
|
|
color: #FFB86C;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cm-s-panda-syntax .cm-tag {
|
|
|
|
color: #ff2c6d;
|
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-meta {
|
|
|
|
color: #b084eb;
|
|
|
|
}
|
|
|
|
|
2016-07-30 04:25:24 +00:00
|
|
|
.cm-s-panda-syntax .cm-number {
|
|
|
|
color: #FFB86C;
|
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-atom {
|
2016-10-10 13:15:29 +00:00
|
|
|
color: #ff2c6d;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-keyword {
|
|
|
|
color: #FF75B5;
|
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-variable {
|
2016-10-10 13:15:29 +00:00
|
|
|
color: #ffb86c;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-variable-2 {
|
2016-10-10 13:15:29 +00:00
|
|
|
color: #ff9ac1;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-variable-3 {
|
2016-10-10 13:15:29 +00:00
|
|
|
color: #ff9ac1;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.cm-s-panda-syntax .cm-def {
|
|
|
|
color: #e6e6e6;
|
|
|
|
}
|
|
|
|
.cm-s-panda-syntax .cm-property {
|
2016-10-10 13:15:29 +00:00
|
|
|
color: #f3f3f3;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
2016-10-10 13:15:29 +00:00
|
|
|
.cm-s-panda-syntax .cm-unit {
|
|
|
|
color: #ffb86c;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 13:15:29 +00:00
|
|
|
.cm-s-panda-syntax .cm-attribute {
|
|
|
|
color: #ffb86c;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
2016-10-10 13:15:29 +00:00
|
|
|
|
|
|
|
.cm-s-panda-syntax .CodeMirror-matchingbracket {
|
|
|
|
border-bottom: 1px dotted #19F9D8;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
color: #e6e6e6;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
2016-10-10 13:15:29 +00:00
|
|
|
.CodeMirror-gutters {
|
|
|
|
background: #292a2b;
|
|
|
|
border-right-color: rgba(255, 255, 255, 0.1);
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|
2016-10-10 13:15:29 +00:00
|
|
|
.CodeMirror-linenumber {
|
|
|
|
color: #e6e6e6;
|
|
|
|
opacity: 0.6;
|
2016-07-30 04:25:24 +00:00
|
|
|
}
|