main
Last change
on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[d24f17c] | 1 | /*
|
---|
| 2 |
|
---|
| 3 | ISBL Editor style light color schemec (c) Dmitriy Tarasov <dimatar@gmail.com>
|
---|
| 4 |
|
---|
| 5 | */
|
---|
| 6 |
|
---|
| 7 | .hljs {
|
---|
| 8 | display: block;
|
---|
| 9 | overflow-x: auto;
|
---|
| 10 | padding: 0.5em;
|
---|
| 11 | background: white;
|
---|
| 12 | color: black;
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | /* Base color: saturation 0; */
|
---|
| 16 |
|
---|
| 17 | .hljs-subst {
|
---|
| 18 | color: black;
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | .hljs-comment {
|
---|
| 22 | color: #555555;
|
---|
| 23 | font-style: italic;
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | .hljs-keyword,
|
---|
| 27 | .hljs-attribute,
|
---|
| 28 | .hljs-selector-tag,
|
---|
| 29 | .hljs-meta-keyword,
|
---|
| 30 | .hljs-doctag,
|
---|
| 31 | .hljs-name {
|
---|
| 32 | color: #000000;
|
---|
| 33 | font-weight: bold;
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 |
|
---|
| 37 | /* User color: hue: 0 */
|
---|
| 38 |
|
---|
| 39 | .hljs-string {
|
---|
| 40 | color: #000080;
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | .hljs-type,
|
---|
| 44 | .hljs-number,
|
---|
| 45 | .hljs-selector-id,
|
---|
| 46 | .hljs-selector-class,
|
---|
| 47 | .hljs-quote,
|
---|
| 48 | .hljs-template-tag,
|
---|
| 49 | .hljs-deletion {
|
---|
| 50 | color: #000000;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | .hljs-title,
|
---|
| 54 | .hljs-section {
|
---|
| 55 | color: #fb2c00;
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | .hljs-title>.hljs-built_in {
|
---|
| 59 | color: #008080;
|
---|
| 60 | font-weight: normal;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | .hljs-regexp,
|
---|
| 64 | .hljs-symbol,
|
---|
| 65 | .hljs-variable,
|
---|
| 66 | .hljs-template-variable,
|
---|
| 67 | .hljs-link,
|
---|
| 68 | .hljs-selector-attr,
|
---|
| 69 | .hljs-selector-pseudo {
|
---|
| 70 | color: #5e1700;
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | /* Language color: hue: 90; */
|
---|
| 74 |
|
---|
| 75 | .hljs-built_in,
|
---|
| 76 | .hljs-literal {
|
---|
| 77 | color: #000080;
|
---|
| 78 | font-weight: bold;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | .hljs-bullet,
|
---|
| 82 | .hljs-code,
|
---|
| 83 | .hljs-addition {
|
---|
| 84 | color: #397300;
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | .hljs-class {
|
---|
| 88 | color: #6f1C00;
|
---|
| 89 | font-weight: bold;
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | /* Meta color: hue: 200 */
|
---|
| 93 |
|
---|
| 94 | .hljs-meta {
|
---|
| 95 | color: #1f7199;
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | .hljs-meta-string {
|
---|
| 99 | color: #4d99bf;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 |
|
---|
| 103 | /* Misc effects */
|
---|
| 104 |
|
---|
| 105 | .hljs-emphasis {
|
---|
| 106 | font-style: italic;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | .hljs-strong {
|
---|
| 110 | font-weight: bold;
|
---|
| 111 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.