hopscotch.scss (1079B)
1 /* 2 * Hopscotch 3 * by Jan T. Sott 4 * https://github.com/idleberg/Hopscotch 5 * 6 * This work is licensed under the Creative Commons CC0 1.0 Universal License 7 */ 8 9 /* Comment */ 10 .hljs-comment, 11 .hljs-quote { 12 color: #989498; 13 } 14 15 /* Red */ 16 .hljs-variable, 17 .hljs-template-variable, 18 .hljs-attribute, 19 .hljs-tag, 20 .hljs-name, 21 .hljs-selector-id, 22 .hljs-selector-class, 23 .hljs-regexp, 24 .hljs-link, 25 .hljs-deletion { 26 color: #dd464c; 27 } 28 29 /* Orange */ 30 .hljs-number, 31 .hljs-built_in, 32 .hljs-builtin-name, 33 .hljs-literal, 34 .hljs-type, 35 .hljs-params { 36 color: #fd8b19; 37 } 38 39 /* Yellow */ 40 .hljs-class .hljs-title { 41 color: #fdcc59; 42 } 43 44 /* Green */ 45 .hljs-string, 46 .hljs-symbol, 47 .hljs-bullet, 48 .hljs-addition { 49 color: #8fc13e; 50 } 51 52 /* Aqua */ 53 .hljs-meta { 54 color: #149b93; 55 } 56 57 /* Blue */ 58 .hljs-function, 59 .hljs-section, 60 .hljs-title { 61 color: #1290bf; 62 } 63 64 /* Purple */ 65 .hljs-keyword, 66 .hljs-selector-tag { 67 color: #c85e7c; 68 } 69 70 .hljs { 71 display: block; 72 overflow-x: auto; 73 background: #322931; 74 color: #b9b5b8; 75 padding: 0.5em; 76 } 77 78 .hljs-emphasis { 79 font-style: italic; 80 } 81 82 .hljs-strong { 83 font-weight: bold; 84 }