l0bsterssg

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

ocean.scss (1004B)


      1 /* Ocean Dark Theme */
      2 /* https://github.com/gavsiu */
      3 /* Original theme - https://github.com/chriskempson/base16 */
      4 
      5 /* Ocean Comment */
      6 .hljs-comment,
      7 .hljs-quote {
      8   color: #65737e;
      9 }
     10 
     11 /* Ocean Red */
     12 .hljs-variable,
     13 .hljs-template-variable,
     14 .hljs-tag,
     15 .hljs-name,
     16 .hljs-selector-id,
     17 .hljs-selector-class,
     18 .hljs-regexp,
     19 .hljs-deletion {
     20   color: #bf616a;
     21 }
     22 
     23 /* Ocean Orange */
     24 .hljs-number,
     25 .hljs-built_in,
     26 .hljs-builtin-name,
     27 .hljs-literal,
     28 .hljs-type,
     29 .hljs-params,
     30 .hljs-meta,
     31 .hljs-link {
     32   color: #d08770;
     33 }
     34 
     35 /* Ocean Yellow */
     36 .hljs-attribute {
     37   color: #ebcb8b;
     38 }
     39 
     40 /* Ocean Green */
     41 .hljs-string,
     42 .hljs-symbol,
     43 .hljs-bullet,
     44 .hljs-addition {
     45   color: #a3be8c;
     46 }
     47 
     48 /* Ocean Blue */
     49 .hljs-title,
     50 .hljs-section {
     51   color: #8fa1b3;
     52 }
     53 
     54 /* Ocean Purple */
     55 .hljs-keyword,
     56 .hljs-selector-tag {
     57   color: #b48ead;
     58 }
     59 
     60 .hljs {
     61   display: block;
     62   overflow-x: auto;
     63   background: #2b303b;
     64   color: #c0c5ce;
     65   padding: 0.5em;
     66 }
     67 
     68 .hljs-emphasis {
     69   font-style: italic;
     70 }
     71 
     72 .hljs-strong {
     73   font-weight: bold;
     74 }