PluginProbe
Prismatic / 2.2
Prismatic v2.2
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 / idea.css

idea.css in Prismatic 2.2, at lib/highlight/css/idea.css

98 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3 Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 color: #000;
12 background: #fff;
13 }
14
15 .hljs-subst,
16 .hljs-title {
17 font-weight: normal;
18 color: #000;
19 }
20
21 .hljs-comment,
22 .hljs-quote {
23 color: #808080;
24 font-style: italic;
25 }
26
27 .hljs-meta {
28 color: #808000;
29 }
30
31 .hljs-tag {
32 background: #efefef;
33 }
34
35 .hljs-section,
36 .hljs-name,
37 .hljs-literal,
38 .hljs-keyword,
39 .hljs-selector-tag,
40 .hljs-type,
41 .hljs-selector-id,
42 .hljs-selector-class {
43 font-weight: bold;
44 color: #000080;
45 }
46
47 .hljs-attribute,
48 .hljs-number,
49 .hljs-regexp,
50 .hljs-link {
51 font-weight: bold;
52 color: #0000ff;
53 }
54
55 .hljs-number,
56 .hljs-regexp,
57 .hljs-link {
58 font-weight: normal;
59 }
60
61 .hljs-string {
62 color: #008000;
63 font-weight: bold;
64 }
65
66 .hljs-symbol,
67 .hljs-bullet,
68 .hljs-formula {
69 color: #000;
70 background: #d0eded;
71 font-style: italic;
72 }
73
74 .hljs-doctag {
75 text-decoration: underline;
76 }
77
78 .hljs-variable,
79 .hljs-template-variable {
80 color: #660e7a;
81 }
82
83 .hljs-addition {
84 background: #baeeba;
85 }
86
87 .hljs-deletion {
88 background: #ffc8bd;
89 }
90
91 .hljs-emphasis {
92 font-style: italic;
93 }
94
95 .hljs-strong {
96 font-weight: bold;
97 }
98