Attribute changed highlight
[roojs1] / highlight / styles / tomorrow-night-blue.css
1 /* Tomorrow Night Blue Theme */
2 /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3 /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4 /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
6 /* Tomorrow Comment */
7 .hljs-comment,
8 .hljs-quote {
9   color: #7285b7;
10 }
11
12 /* Tomorrow Red */
13 .hljs-variable,
14 .hljs-template-variable,
15 .hljs-tag,
16 .hljs-name,
17 .hljs-selector-id,
18 .hljs-selector-class,
19 .hljs-regexp,
20 .hljs-deletion {
21   color: #ff9da4;
22 }
23
24 /* Tomorrow Orange */
25 .hljs-number,
26 .hljs-built_in,
27 .hljs-builtin-name,
28 .hljs-literal,
29 .hljs-type,
30 .hljs-params,
31 .hljs-meta,
32 .hljs-link {
33   color: #ffc58f;
34 }
35
36 /* Tomorrow Yellow */
37 .hljs-attribute {
38   color: #ffeead;
39 }
40
41 /* Tomorrow Green */
42 .hljs-string,
43 .hljs-symbol,
44 .hljs-bullet,
45 .hljs-addition {
46   color: #d1f1a9;
47 }
48
49 /* Tomorrow Blue */
50 .hljs-title,
51 .hljs-section {
52   color: #bbdaff;
53 }
54
55 /* Tomorrow Purple */
56 .hljs-keyword,
57 .hljs-selector-tag {
58   color: #ebbbff;
59 }
60
61 .hljs {
62   display: block;
63   overflow-x: auto;
64   background: #002451;
65   color: white;
66   padding: 0.5em;
67 }
68
69 .hljs-emphasis {
70   font-style: italic;
71 }
72
73 .hljs-strong {
74   font-weight: bold;
75 }