main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[d24f17c] | 1 | /*
|
---|
| 2 |
|
---|
| 3 | An Old Hope – Star Wars Syntax (c) Gustavo Costa <gusbemacbe@gmail.com>
|
---|
| 4 | Original theme - Ocean Dark Theme – by https://github.com/gavsiu
|
---|
| 5 | Based on Jesse Leite's Atom syntax theme 'An Old Hope' – https://github.com/JesseLeite/an-old-hope-syntax-atom
|
---|
| 6 |
|
---|
| 7 | */
|
---|
| 8 |
|
---|
| 9 | /* Death Star Comment */
|
---|
| 10 | .hljs-comment,
|
---|
| 11 | .hljs-quote
|
---|
| 12 | {
|
---|
| 13 | color: #B6B18B;
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | /* Darth Vader */
|
---|
| 17 | .hljs-variable,
|
---|
| 18 | .hljs-template-variable,
|
---|
| 19 | .hljs-tag,
|
---|
| 20 | .hljs-name,
|
---|
| 21 | .hljs-selector-id,
|
---|
| 22 | .hljs-selector-class,
|
---|
| 23 | .hljs-regexp,
|
---|
| 24 | .hljs-deletion
|
---|
| 25 | {
|
---|
| 26 | color: #EB3C54;
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | /* Threepio */
|
---|
| 30 | .hljs-number,
|
---|
| 31 | .hljs-built_in,
|
---|
| 32 | .hljs-builtin-name,
|
---|
| 33 | .hljs-literal,
|
---|
| 34 | .hljs-type,
|
---|
| 35 | .hljs-params,
|
---|
| 36 | .hljs-meta,
|
---|
| 37 | .hljs-link
|
---|
| 38 | {
|
---|
| 39 | color: #E7CE56;
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | /* Luke Skywalker */
|
---|
| 43 | .hljs-attribute
|
---|
| 44 | {
|
---|
| 45 | color: #EE7C2B;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | /* Obi Wan Kenobi */
|
---|
| 49 | .hljs-string,
|
---|
| 50 | .hljs-symbol,
|
---|
| 51 | .hljs-bullet,
|
---|
| 52 | .hljs-addition
|
---|
| 53 | {
|
---|
| 54 | color: #4FB4D7;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | /* Yoda */
|
---|
| 58 | .hljs-title,
|
---|
| 59 | .hljs-section
|
---|
| 60 | {
|
---|
| 61 | color: #78BB65;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | /* Mace Windu */
|
---|
| 65 | .hljs-keyword,
|
---|
| 66 | .hljs-selector-tag
|
---|
| 67 | {
|
---|
| 68 | color: #B45EA4;
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | /* Millenium Falcon */
|
---|
| 72 | .hljs
|
---|
| 73 | {
|
---|
| 74 | display: block;
|
---|
| 75 | overflow-x: auto;
|
---|
| 76 | background: #1C1D21;
|
---|
| 77 | color: #c0c5ce;
|
---|
| 78 | padding: 0.5em;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | .hljs-emphasis
|
---|
| 82 | {
|
---|
| 83 | font-style: italic;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | .hljs-strong
|
---|
| 87 | {
|
---|
| 88 | font-weight: bold;
|
---|
| 89 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.