tomorrow-night-eighties.scss (1086B)
1 /* Tomorrow Night Eighties Theme */ 2 /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 5 /* Tomorrow Comment */ 6 .hljs-comment, 7 .hljs-quote { 8 color: #999999; 9 } 10 11 /* Tomorrow 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: #f2777a; 21 } 22 23 /* Tomorrow 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: #f99157; 33 } 34 35 /* Tomorrow Yellow */ 36 .hljs-attribute { 37 color: #ffcc66; 38 } 39 40 /* Tomorrow Green */ 41 .hljs-string, 42 .hljs-symbol, 43 .hljs-bullet, 44 .hljs-addition { 45 color: #99cc99; 46 } 47 48 /* Tomorrow Blue */ 49 .hljs-title, 50 .hljs-section { 51 color: #6699cc; 52 } 53 54 /* Tomorrow Purple */ 55 .hljs-keyword, 56 .hljs-selector-tag { 57 color: #cc99cc; 58 } 59 60 .hljs { 61 display: block; 62 overflow-x: auto; 63 background: #2d2d2d; 64 color: #cccccc; 65 padding: 0.5em; 66 } 67 68 .hljs-emphasis { 69 font-style: italic; 70 } 71 72 .hljs-strong { 73 font-weight: bold; 74 }