Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #761 from SmoKE585/alpha
Пересобран редактор кода + фикс дизайна
- Loading branch information
Showing
24 changed files
with
1,727 additions
and
400 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
Name: Base16 Default Light | ||
Author: Chris Kempson (http://chriskempson.com) | ||
CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror) | ||
Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) | ||
*/ | ||
|
||
.cm-s-base16-light.CodeMirror { background: #f5f5f5; color: #202020; } | ||
.cm-s-base16-light div.CodeMirror-selected { background: #e0e0e0; } | ||
.cm-s-base16-light .CodeMirror-line::selection, .cm-s-base16-light .CodeMirror-line > span::selection, .cm-s-base16-light .CodeMirror-line > span > span::selection { background: #e0e0e0; } | ||
.cm-s-base16-light .CodeMirror-line::-moz-selection, .cm-s-base16-light .CodeMirror-line > span::-moz-selection, .cm-s-base16-light .CodeMirror-line > span > span::-moz-selection { background: #e0e0e0; } | ||
.cm-s-base16-light .CodeMirror-gutters { background: #f5f5f5; border-right: 0px; } | ||
.cm-s-base16-light .CodeMirror-guttermarker { color: #ac4142; } | ||
.cm-s-base16-light .CodeMirror-guttermarker-subtle { color: #b0b0b0; } | ||
.cm-s-base16-light .CodeMirror-linenumber { color: #b0b0b0; } | ||
.cm-s-base16-light .CodeMirror-cursor { border-left: 1px solid #505050; } | ||
|
||
.cm-s-base16-light span.cm-comment { color: #8f5536; } | ||
.cm-s-base16-light span.cm-atom { color: #aa759f; } | ||
.cm-s-base16-light span.cm-number { color: #aa759f; } | ||
|
||
.cm-s-base16-light span.cm-property, .cm-s-base16-light span.cm-attribute { color: #90a959; } | ||
.cm-s-base16-light span.cm-keyword { color: #ac4142; } | ||
.cm-s-base16-light span.cm-string { color: #f4bf75; } | ||
|
||
.cm-s-base16-light span.cm-variable { color: #90a959; } | ||
.cm-s-base16-light span.cm-variable-2 { color: #6a9fb5; } | ||
.cm-s-base16-light span.cm-def { color: #d28445; } | ||
.cm-s-base16-light span.cm-bracket { color: #202020; } | ||
.cm-s-base16-light span.cm-tag { color: #ac4142; } | ||
.cm-s-base16-light span.cm-link { color: #aa759f; } | ||
.cm-s-base16-light span.cm-error { background: #ac4142; color: #505050; } | ||
|
||
.cm-s-base16-light .CodeMirror-activeline-background { background: #DDDCDC; } | ||
.cm-s-base16-light .CodeMirror-matchingbracket { color: #f5f5f5 !important; background-color: #6A9FB5 !important} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.