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 / ocean.css

ocean.css in Prismatic 1.9, at lib/highlight/css/ocean.css

75 lines 1004 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Ocean Dark Theme */
2 /* https://github.com/gavsiu */
3 /* Original theme - https://github.com/chriskempson/base16 */
4
5 /* Ocean Comment */
6 .hljs-comment,
7 .hljs-quote {
8 color: #65737e;
9 }
10
11 /* Ocean Red */
12 .hljs-variable,
13 .hljs-template-variable,
14 .hljs-tag,
15 .hljs-name,
16 .hljs-selector-id,
17 .hljs-selector-class,
18 .hljs-regexp,
19 .hljs-deletion {
20 color: #bf616a;
21 }
22
23 /* Ocean Orange */
24 .hljs-number,
25 .hljs-built_in,
26 .hljs-builtin-name,
27 .hljs-literal,
28 .hljs-type,
29 .hljs-params,
30 .hljs-meta,
31 .hljs-link {
32 color: #d08770;
33 }
34
35 /* Ocean Yellow */
36 .hljs-attribute {
37 color: #ebcb8b;
38 }
39
40 /* Ocean Green */
41 .hljs-string,
42 .hljs-symbol,
43 .hljs-bullet,
44 .hljs-addition {
45 color: #a3be8c;
46 }
47
48 /* Ocean Blue */
49 .hljs-title,
50 .hljs-section {
51 color: #8fa1b3;
52 }
53
54 /* Ocean Purple */
55 .hljs-keyword,
56 .hljs-selector-tag {
57 color: #b48ead;
58 }
59
60 .hljs {
61 display: block;
62 overflow-x: auto;
63 background: #2b303b;
64 color: #c0c5ce;
65 padding: 0.5em;
66 }
67
68 .hljs-emphasis {
69 font-style: italic;
70 }
71
72 .hljs-strong {
73 font-weight: bold;
74 }
75