12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* ambiance theme for codemirror */
-
- /* Color scheme */
-
- .cm-s-ambiance .cm-keyword { color: #cda869; }
- .cm-s-ambiance .cm-atom { color: #CF7EA9; }
- .cm-s-ambiance .cm-number { color: #78CF8A; }
- .cm-s-ambiance .cm-def { color: #aac6e3; }
- .cm-s-ambiance .cm-variable { color: #ffb795; }
- .cm-s-ambiance .cm-variable-2 { color: #eed1b3; }
- .cm-s-ambiance .cm-variable-3 { color: #faded3; }
- .cm-s-ambiance .cm-property { color: #eed1b3; }
- .cm-s-ambiance .cm-operator {color: #fa8d6a;}
- .cm-s-ambiance .cm-comment { color: #555; font-style:italic; }
- .cm-s-ambiance .cm-string { color: #8f9d6a; }
- .cm-s-ambiance .cm-string-2 { color: #9d937c; }
- .cm-s-ambiance .cm-meta { color: #D2A8A1; }
- .cm-s-ambiance .cm-qualifier { color: yellow; }
- .cm-s-ambiance .cm-builtin { color: #9999cc; }
- .cm-s-ambiance .cm-bracket { color: #24C2C7; }
- .cm-s-ambiance .cm-tag { color: #fee4ff }
- .cm-s-ambiance .cm-attribute { color: #9B859D; }
- .cm-s-ambiance .cm-header {color: blue;}
- .cm-s-ambiance .cm-quote { color: #24C2C7; }
- .cm-s-ambiance .cm-hr { color: pink; }
- .cm-s-ambiance .cm-link { color: #F4C20B; }
- .cm-s-ambiance .cm-special { color: #FF9D00; }
- .cm-s-ambiance .cm-error { color: #AF2018; }
-
- .cm-s-ambiance .CodeMirror-matchingbracket { color: #0f0; }
- .cm-s-ambiance .CodeMirror-nonmatchingbracket { color: #f22; }
-
- .cm-s-ambiance .CodeMirror-selected {
- background: rgba(255, 255, 255, 0.15);
- }
- .cm-s-ambiance.CodeMirror-focused .CodeMirror-selected {
- background: rgba(255, 255, 255, 0.10);
- }
-
- /* Editor styling */
-
- .cm-s-ambiance.CodeMirror {
- line-height: 1.40em;
- font-family: Monaco, Menlo,"Andale Mono","lucida console","Courier New",monospace !important;
- color: #E6E1DC;
- background-color: #202020;
- -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
- -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
- box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
- }
-
- .cm-s-ambiance .CodeMirror-gutters {
- background: #3D3D3D;
- border-right: 1px solid #4D4D4D;
- box-shadow: 0 10px 5px rgba(0,0,0,0.5);
- }
-
- .cm-s-ambiance .CodeMirror-linenumber {
- text-shadow: 0px 1px 1px #4d4d4d;
- color: #222;
- padding: 0 5px;
- }
-
- .cm-s-ambiance .CodeMirror-lines .CodeMirror-cursor {
- border-left: 1px solid #7991E8;
- }
-
- .cm-s-ambiance .CodeMirror-activeline-background {
- background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.031);
- }
-
- .cm-s-ambiance.CodeMirror,
- .cm-s-ambiance .CodeMirror-gutters {
- background: #333;
- }
|