isbl-editor-dark.scss (1370B)
1 /* 2 3 ISBL Editor style dark color scheme (c) Dmitriy Tarasov <dimatar@gmail.com> 4 5 */ 6 7 .hljs { 8 display: block; 9 overflow-x: auto; 10 padding: 0.5em; 11 background: #404040; 12 color: #f0f0f0; 13 } 14 15 /* Base color: saturation 0; */ 16 17 .hljs, 18 .hljs-subst { 19 color: #f0f0f0; 20 } 21 22 .hljs-comment { 23 color: #b5b5b5; 24 font-style: italic; 25 } 26 27 .hljs-keyword, 28 .hljs-attribute, 29 .hljs-selector-tag, 30 .hljs-meta-keyword, 31 .hljs-doctag, 32 .hljs-name { 33 color: #f0f0f0; 34 font-weight: bold; 35 } 36 37 38 /* User color: hue: 0 */ 39 40 .hljs-string { 41 color: #97bf0d; 42 } 43 44 .hljs-type, 45 .hljs-number, 46 .hljs-selector-id, 47 .hljs-selector-class, 48 .hljs-quote, 49 .hljs-template-tag, 50 .hljs-deletion { 51 color: #f0f0f0; 52 } 53 54 .hljs-title, 55 .hljs-section { 56 color: #df471e; 57 } 58 59 .hljs-title>.hljs-built_in { 60 color: #81bce9; 61 font-weight: normal; 62 } 63 64 .hljs-regexp, 65 .hljs-symbol, 66 .hljs-variable, 67 .hljs-template-variable, 68 .hljs-link, 69 .hljs-selector-attr, 70 .hljs-selector-pseudo { 71 color: #e2c696; 72 } 73 74 /* Language color: hue: 90; */ 75 76 .hljs-built_in, 77 .hljs-literal { 78 color: #97bf0d; 79 font-weight: bold; 80 } 81 82 .hljs-bullet, 83 .hljs-code, 84 .hljs-addition { 85 color: #397300; 86 } 87 88 .hljs-class { 89 color: #ce9d4d; 90 font-weight: bold; 91 } 92 93 /* Meta color: hue: 200 */ 94 95 .hljs-meta { 96 color: #1f7199; 97 } 98 99 .hljs-meta-string { 100 color: #4d99bf; 101 } 102 103 104 /* Misc effects */ 105 106 .hljs-emphasis { 107 font-style: italic; 108 } 109 110 .hljs-strong { 111 font-weight: bold; 112 }