l0bsterssg

node.js static responsive blog post generator
Log | Files | Refs | README

srcery.css (1029B)


      1 /*
      2 Description: Srcery dark color scheme for highlight.js
      3 Author: Chen Bin <chen.bin@gmail.com>
      4 Website: https://srcery-colors.github.io/
      5 Date: 2020-04-06
      6 */
      7 
      8 .hljs {
      9   display: block;
     10   overflow-x: auto;
     11   padding: 0.5em;
     12   background: #1C1B19;
     13   color: #FCE8C3;
     14 }
     15 
     16 .hljs-strong,
     17 .hljs-emphasis {
     18   color: #918175;
     19 }
     20 
     21 .hljs-bullet,
     22 .hljs-quote,
     23 .hljs-link,
     24 .hljs-number,
     25 .hljs-regexp,
     26 .hljs-literal {
     27   color: #FF5C8F;
     28 }
     29 
     30 .hljs-code,
     31 .hljs-selector-class {
     32   color: #68A8E4
     33 }
     34 
     35 .hljs-emphasis {
     36   font-style: italic;
     37 }
     38 
     39 .hljs-keyword,
     40 .hljs-selector-tag,
     41 .hljs-section,
     42 .hljs-attribute,
     43 .hljs-variable {
     44   color: #EF2F27;
     45 }
     46 
     47 .hljs-name,
     48 .hljs-title {
     49   color: #FBB829;
     50 }
     51 
     52 .hljs-type,
     53 .hljs-params {
     54   color: #0AAEB3;
     55 }
     56 
     57 .hljs-string {
     58   color: #98BC37;
     59 }
     60 
     61 .hljs-subst,
     62 .hljs-built_in,
     63 .hljs-builtin-name,
     64 .hljs-symbol,
     65 .hljs-selector-id,
     66 .hljs-selector-attr,
     67 .hljs-selector-pseudo,
     68 .hljs-template-tag,
     69 .hljs-template-variable,
     70 .hljs-addition {
     71   color: #C07ABE;
     72 }
     73 
     74 .hljs-comment,
     75 .hljs-deletion,
     76 .hljs-meta {
     77   color: #918175;
     78 }