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.0 KB
|
Line | |
---|
1 | /**
|
---|
2 | * GitHub Gist Theme
|
---|
3 | * Author : Anthony Attard - https://github.com/AnthonyAttard
|
---|
4 | * Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro
|
---|
5 | */
|
---|
6 |
|
---|
7 | .hljs {
|
---|
8 | display: block;
|
---|
9 | background: white;
|
---|
10 | padding: 0.5em;
|
---|
11 | color: #333333;
|
---|
12 | overflow-x: auto;
|
---|
13 | }
|
---|
14 |
|
---|
15 | .hljs-comment,
|
---|
16 | .hljs-meta {
|
---|
17 | color: #969896;
|
---|
18 | }
|
---|
19 |
|
---|
20 | .hljs-variable,
|
---|
21 | .hljs-template-variable,
|
---|
22 | .hljs-strong,
|
---|
23 | .hljs-emphasis,
|
---|
24 | .hljs-quote {
|
---|
25 | color: #df5000;
|
---|
26 | }
|
---|
27 |
|
---|
28 | .hljs-keyword,
|
---|
29 | .hljs-selector-tag,
|
---|
30 | .hljs-type {
|
---|
31 | color: #d73a49;
|
---|
32 | }
|
---|
33 |
|
---|
34 | .hljs-literal,
|
---|
35 | .hljs-symbol,
|
---|
36 | .hljs-bullet,
|
---|
37 | .hljs-attribute {
|
---|
38 | color: #0086b3;
|
---|
39 | }
|
---|
40 |
|
---|
41 | .hljs-section,
|
---|
42 | .hljs-name {
|
---|
43 | color: #63a35c;
|
---|
44 | }
|
---|
45 |
|
---|
46 | .hljs-tag {
|
---|
47 | color: #333333;
|
---|
48 | }
|
---|
49 |
|
---|
50 | .hljs-title,
|
---|
51 | .hljs-attr,
|
---|
52 | .hljs-selector-id,
|
---|
53 | .hljs-selector-class,
|
---|
54 | .hljs-selector-attr,
|
---|
55 | .hljs-selector-pseudo {
|
---|
56 | color: #6f42c1;
|
---|
57 | }
|
---|
58 |
|
---|
59 | .hljs-addition {
|
---|
60 | color: #55a532;
|
---|
61 | background-color: #eaffea;
|
---|
62 | }
|
---|
63 |
|
---|
64 | .hljs-deletion {
|
---|
65 | color: #bd2c00;
|
---|
66 | background-color: #ffecec;
|
---|
67 | }
|
---|
68 |
|
---|
69 | .hljs-link {
|
---|
70 | text-decoration: underline;
|
---|
71 | }
|
---|
72 |
|
---|
73 | .hljs-number {
|
---|
74 | color: #005cc5;
|
---|
75 | }
|
---|
76 |
|
---|
77 | .hljs-string {
|
---|
78 | color: #032f62;
|
---|
79 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.