comparison .cms/lib/codemirror/theme/material-ocean.css @ 0:78edf6b517a0 draft

24.10
author Coffee CMS <info@coffee-cms.ru>
date Fri, 11 Oct 2024 22:40:23 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:78edf6b517a0
1 /*
2 Name: material
3 Author: Mattia Astorino (http://github.com/equinusocio)
4 Website: https://material-theme.site/
5 */
6
7 .cm-s-material-ocean.CodeMirror {
8 background-color: #0F111A;
9 color: #8F93A2;
10 }
11
12 .cm-s-material-ocean .CodeMirror-gutters {
13 background: #0F111A;
14 color: #464B5D;
15 border: none;
16 }
17
18 .cm-s-material-ocean .CodeMirror-guttermarker,
19 .cm-s-material-ocean .CodeMirror-guttermarker-subtle,
20 .cm-s-material-ocean .CodeMirror-linenumber {
21 color: #464B5D;
22 }
23
24 .cm-s-material-ocean .CodeMirror-cursor {
25 border-left: 1px solid #FFCC00;
26 }
27 .cm-s-material-ocean.cm-fat-cursor .CodeMirror-cursor {
28 background-color: #a2a8a175 !important;
29 }
30 .cm-s-material-ocean .cm-animate-fat-cursor {
31 background-color: #a2a8a175 !important;
32 }
33
34 .cm-s-material-ocean div.CodeMirror-selected {
35 background: rgba(113, 124, 180, 0.2);
36 }
37
38 .cm-s-material-ocean.CodeMirror-focused div.CodeMirror-selected {
39 background: rgba(113, 124, 180, 0.2);
40 }
41
42 .cm-s-material-ocean .CodeMirror-line::selection,
43 .cm-s-material-ocean .CodeMirror-line>span::selection,
44 .cm-s-material-ocean .CodeMirror-line>span>span::selection {
45 background: rgba(128, 203, 196, 0.2);
46 }
47
48 .cm-s-material-ocean .CodeMirror-line::-moz-selection,
49 .cm-s-material-ocean .CodeMirror-line>span::-moz-selection,
50 .cm-s-material-ocean .CodeMirror-line>span>span::-moz-selection {
51 background: rgba(128, 203, 196, 0.2);
52 }
53
54 .cm-s-material-ocean .CodeMirror-activeline-background {
55 background: rgba(0, 0, 0, 0.5);
56 }
57
58 .cm-s-material-ocean .cm-keyword {
59 color: #C792EA;
60 }
61
62 .cm-s-material-ocean .cm-operator {
63 color: #89DDFF;
64 }
65
66 .cm-s-material-ocean .cm-variable-2 {
67 color: #EEFFFF;
68 }
69
70 .cm-s-material-ocean .cm-variable-3,
71 .cm-s-material-ocean .cm-type {
72 color: #f07178;
73 }
74
75 .cm-s-material-ocean .cm-builtin {
76 color: #FFCB6B;
77 }
78
79 .cm-s-material-ocean .cm-atom {
80 color: #F78C6C;
81 }
82
83 .cm-s-material-ocean .cm-number {
84 color: #FF5370;
85 }
86
87 .cm-s-material-ocean .cm-def {
88 color: #82AAFF;
89 }
90
91 .cm-s-material-ocean .cm-string {
92 color: #C3E88D;
93 }
94
95 .cm-s-material-ocean .cm-string-2 {
96 color: #f07178;
97 }
98
99 .cm-s-material-ocean .cm-comment {
100 color: #464B5D;
101 }
102
103 .cm-s-material-ocean .cm-variable {
104 color: #f07178;
105 }
106
107 .cm-s-material-ocean .cm-tag {
108 color: #FF5370;
109 }
110
111 .cm-s-material-ocean .cm-meta {
112 color: #FFCB6B;
113 }
114
115 .cm-s-material-ocean .cm-attribute {
116 color: #C792EA;
117 }
118
119 .cm-s-material-ocean .cm-property {
120 color: #C792EA;
121 }
122
123 .cm-s-material-ocean .cm-qualifier {
124 color: #DECB6B;
125 }
126
127 .cm-s-material-ocean .cm-variable-3,
128 .cm-s-material-ocean .cm-type {
129 color: #DECB6B;
130 }
131
132
133 .cm-s-material-ocean .cm-error {
134 color: rgba(255, 255, 255, 1.0);
135 background-color: #FF5370;
136 }
137
138 .cm-s-material-ocean .CodeMirror-matchingbracket {
139 text-decoration: underline;
140 color: white !important;
141 }