| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- Name: material
- Author: Mattia Astorino (http://github.com/equinusocio)
- Website: https://material-theme.site/
- */
- .cm-s-paper.CodeMirror {
- background-color: #212121;
- color: #eeffff;
- }
- .cm-s-paper .CodeMirror-gutters {
- background: #212121;
- color: #545454;
- border: none;
- }
- .cm-s-paper .CodeMirror-guttermarker,
- .cm-s-paper .CodeMirror-guttermarker-subtle,
- .cm-s-paper .CodeMirror-linenumber {
- color: #545454;
- }
- .cm-s-paper .CodeMirror-cursor {
- border-left: 1px solid #ffcc00;
- }
- .cm-s-paper div.CodeMirror-selected {
- background: rgba(97, 97, 97, 0.2);
- }
- .cm-s-paper.CodeMirror-focused div.CodeMirror-selected {
- background: rgba(97, 97, 97, 0.2);
- }
- .cm-s-paper .CodeMirror-line::selection,
- .cm-s-paper .CodeMirror-line > span::selection,
- .cm-s-paper .CodeMirror-line > span > span::selection {
- background: rgba(128, 203, 196, 0.2);
- }
- .cm-s-paper .CodeMirror-line::-moz-selection,
- .cm-s-paper .CodeMirror-line > span::-moz-selection,
- .cm-s-paper .CodeMirror-line > span > span::-moz-selection {
- background: rgba(128, 203, 196, 0.2);
- }
- .cm-s-paper .CodeMirror-activeline-background {
- background: rgba(0, 0, 0, 0.5);
- }
- .cm-s-paper .cm-keyword {
- color: #c792ea;
- }
- .cm-s-paper .cm-operator {
- color: #89ddff;
- }
- .cm-s-paper .cm-variable-2 {
- color: #eeffff;
- }
- .cm-s-paper .cm-variable-3,
- .cm-s-paper .cm-type {
- color: #f07178;
- }
- .cm-s-paper .cm-builtin {
- color: #ffcb6b;
- }
- .cm-s-paper .cm-atom {
- color: #f78c6c;
- }
- .cm-s-paper .cm-number {
- color: #ff5370;
- }
- .cm-s-paper .cm-def {
- color: #82aaff;
- }
- .cm-s-paper .cm-string {
- color: #c3e88d;
- }
- .cm-s-paper .cm-string-2 {
- color: #f07178;
- }
- .cm-s-paper .cm-comment {
- color: #545454;
- }
- .cm-s-paper .cm-variable {
- color: #f07178;
- }
- .cm-s-paper .cm-tag {
- color: #ff5370;
- }
- .cm-s-paper .cm-meta {
- color: #ffcb6b;
- }
- .cm-s-paper .cm-attribute {
- color: #c792ea;
- }
- .cm-s-paper .cm-property {
- color: #c792ea;
- }
- .cm-s-paper .cm-qualifier {
- color: #decb6b;
- }
- .cm-s-paper .cm-variable-3,
- .cm-s-paper .cm-type {
- color: #decb6b;
- }
- .cm-s-paper .cm-error {
- color: rgba(255, 255, 255, 1);
- background-color: #ff5370;
- }
- .cm-s-paper .CodeMirror-matchingbracket {
- text-decoration: underline;
- color: white !important;
- }
|