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:
837 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | /*
|
---|
| 2 |
|
---|
| 3 | Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
|
---|
| 4 |
|
---|
| 5 | */
|
---|
| 6 | .hljs {
|
---|
| 7 | display: block;
|
---|
| 8 | overflow-x: auto;
|
---|
| 9 | padding: 0.5em;
|
---|
| 10 | background: white;
|
---|
| 11 | color: black;
|
---|
| 12 | }
|
---|
| 13 |
|
---|
| 14 | .hljs-comment,
|
---|
| 15 | .hljs-quote,
|
---|
| 16 | .hljs-variable {
|
---|
| 17 | color: #008000;
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | .hljs-keyword,
|
---|
| 21 | .hljs-selector-tag,
|
---|
| 22 | .hljs-built_in,
|
---|
| 23 | .hljs-name,
|
---|
| 24 | .hljs-tag {
|
---|
| 25 | color: #00f;
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | .hljs-string,
|
---|
| 29 | .hljs-title,
|
---|
| 30 | .hljs-section,
|
---|
| 31 | .hljs-attribute,
|
---|
| 32 | .hljs-literal,
|
---|
| 33 | .hljs-template-tag,
|
---|
| 34 | .hljs-template-variable,
|
---|
| 35 | .hljs-type,
|
---|
| 36 | .hljs-addition {
|
---|
| 37 | color: #a31515;
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | .hljs-deletion,
|
---|
| 41 | .hljs-selector-attr,
|
---|
| 42 | .hljs-selector-pseudo,
|
---|
| 43 | .hljs-meta {
|
---|
| 44 | color: #2b91af;
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | .hljs-doctag {
|
---|
| 48 | color: #808080;
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | .hljs-attr {
|
---|
| 52 | color: #f00;
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | .hljs-symbol,
|
---|
| 56 | .hljs-bullet,
|
---|
| 57 | .hljs-link {
|
---|
| 58 | color: #00b0e8;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 |
|
---|
| 62 | .hljs-emphasis {
|
---|
| 63 | font-style: italic;
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | .hljs-strong {
|
---|
| 67 | font-weight: bold;
|
---|
| 68 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.