PluginProbe
Prismatic / 1.9
Prismatic v1.9
trunk 1.3 1.4 1.5 1.6 1.6.1 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.9.1 3.0 3.1 3.1.1 3.2 3.2.1 All 40 releases
prismatic / lib / highlight / css / github-gist.css

github-gist.css in Prismatic 1.9, at lib/highlight/css/github-gist.css

72 lines 919 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * GitHub Gist Theme
3 * Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro
4 */
5
6 .hljs {
7 display: block;
8 background: white;
9 padding: 0.5em;
10 color: #333333;
11 overflow-x: auto;
12 }
13
14 .hljs-comment,
15 .hljs-meta {
16 color: #969896;
17 }
18
19 .hljs-string,
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: #a71d5d;
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: #795da3;
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