LaravelTest
143 строки · 2.3 Кб
1/*
2Name: Moxer Theme
3Author: Mattia Astorino (http://github.com/equinusocio)
4Website: https://github.com/moxer-theme/moxer-code
5*/
6
7.cm-s-moxer.CodeMirror {8background-color: #090A0F;9color: #8E95B4;10line-height: 1.8;11}
12
13.cm-s-moxer .CodeMirror-gutters {14background: #090A0F;15color: #35394B;16border: none;17}
18
19.cm-s-moxer .CodeMirror-guttermarker,
20.cm-s-moxer .CodeMirror-guttermarker-subtle,
21.cm-s-moxer .CodeMirror-linenumber {22color: #35394B;23}
24
25
26.cm-s-moxer .CodeMirror-cursor {27border-left: 1px solid #FFCC00;28}
29
30.cm-s-moxer div.CodeMirror-selected {31background: rgba(128, 203, 196, 0.2);32}
33
34.cm-s-moxer.CodeMirror-focused div.CodeMirror-selected {35background: #212431;36}
37
38.cm-s-moxer .CodeMirror-line::selection,
39.cm-s-moxer .CodeMirror-line>span::selection,
40.cm-s-moxer .CodeMirror-line>span>span::selection {41background: #212431;42}
43
44.cm-s-moxer .CodeMirror-line::-moz-selection,
45.cm-s-moxer .CodeMirror-line>span::-moz-selection,
46.cm-s-moxer .CodeMirror-line>span>span::-moz-selection {47background: #212431;48}
49
50.cm-s-moxer .CodeMirror-activeline-background,
51.cm-s-moxer .CodeMirror-activeline-gutter .CodeMirror-linenumber {52background: rgba(33, 36, 49, 0.5);53}
54
55.cm-s-moxer .cm-keyword {56color: #D46C6C;57}
58
59.cm-s-moxer .cm-operator {60color: #D46C6C;61}
62
63.cm-s-moxer .cm-variable-2 {64color: #81C5DA;65}
66
67
68.cm-s-moxer .cm-variable-3,
69.cm-s-moxer .cm-type {70color: #f07178;71}
72
73.cm-s-moxer .cm-builtin {74color: #FFCB6B;75}
76
77.cm-s-moxer .cm-atom {78color: #A99BE2;79}
80
81.cm-s-moxer .cm-number {82color: #7CA4C0;83}
84
85.cm-s-moxer .cm-def {86color: #F5DFA5;87}
88
89.cm-s-moxer .CodeMirror-line .cm-def ~ .cm-def {90color: #81C5DA;91}
92
93.cm-s-moxer .cm-string {94color: #B2E4AE;95}
96
97.cm-s-moxer .cm-string-2 {98color: #f07178;99}
100
101.cm-s-moxer .cm-comment {102color: #3F445A;103}
104
105.cm-s-moxer .cm-variable {106color: #8E95B4;107}
108
109.cm-s-moxer .cm-tag {110color: #FF5370;111}
112
113.cm-s-moxer .cm-meta {114color: #FFCB6B;115}
116
117.cm-s-moxer .cm-attribute {118color: #C792EA;119}
120
121.cm-s-moxer .cm-property {122color: #81C5DA;123}
124
125.cm-s-moxer .cm-qualifier {126color: #DECB6B;127}
128
129.cm-s-moxer .cm-variable-3,
130.cm-s-moxer .cm-type {131color: #DECB6B;132}
133
134
135.cm-s-moxer .cm-error {136color: rgba(255, 255, 255, 1.0);137background-color: #FF5370;138}
139
140.cm-s-moxer .CodeMirror-matchingbracket {141text-decoration: underline;142color: white !important;143}