Selaa lähdekoodia

Add codemirror-material-darker.css

Jerry Liao 2 vuotta sitten
vanhempi
commit
0a9d4f8aa7
1 muutettua tiedostoa jossa 134 lisäystä ja 0 poistoa
  1. 134 0
      codemirror-material-darker

+ 134 - 0
codemirror-material-darker

@@ -0,0 +1,134 @@
+/*
+  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;
+}