Skip to content

Commit 969ab5f

Browse files
author
Offerel
committed
Merge branch 'test' into dev
2 parents 1bdfb7c + fb14a46 commit 969ab5f

File tree

9 files changed

+530
-24
lines changed

9 files changed

+530
-24
lines changed

composer.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
{
2-
"name": "offerel/primitivenotes",
3-
"description": "A deadly simple notes plugin for Roundcube",
4-
"keywords": ["notes","plugin","html","markdown","images","pdf","roundcube"],
5-
"homepage": "https://github.com/Offerel/roundcube_primitivenotes",
6-
"type": "roundcube-plugin",
7-
"license": "AGPL-3.0",
8-
"version": "2.1.0",
9-
"authors": [
10-
{
11-
"name": "Offerel",
12-
"homepage": "https://github.com/Offerel",
13-
"role": "Developer"
14-
}
15-
],
16-
"repositories": [
17-
{
18-
"type": "composer",
19-
"url": "https://plugins.roundcube.net"
20-
}
21-
],
22-
"require": {
23-
"roundcube/plugin-installer": ">=0.1.7"
24-
}
1+
{
2+
"name": "offerel/primitivenotes",
3+
"description": "A deadly simple notes plugin for Roundcube",
4+
"keywords": ["notes","plugin","html","markdown","images","pdf","roundcube"],
5+
"homepage": "https://github.com/Offerel/roundcube_primitivenotes",
6+
"type": "roundcube-plugin",
7+
"license": "AGPL-3.0",
8+
"version": "2.1.0",
9+
"authors": [
10+
{
11+
"name": "Offerel",
12+
"homepage": "https://github.com/Offerel",
13+
"role": "Developer"
14+
}
15+
],
16+
"repositories": [
17+
{
18+
"type": "composer",
19+
"url": "https://plugins.roundcube.net"
20+
}
21+
],
22+
"require": {
23+
"roundcube/plugin-installer": ">=0.1.7"
24+
}
2525
}
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
/* Base16 Atelier Savanna Light - Theme */
2+
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */
3+
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4+
5+
/* Atelier-Savanna Comment */
6+
.hljs-comment,
7+
.hljs-quote {
8+
color: #5f6d64;
9+
}
10+
11+
/* Atelier-Savanna Red */
12+
.hljs-variable,
13+
.hljs-template-variable,
14+
.hljs-attribute,
15+
.hljs-tag,
16+
.hljs-name,
17+
.hljs-regexp,
18+
.hljs-link,
19+
.hljs-name,
20+
.hljs-selector-id,
21+
.hljs-selector-class {
22+
color: #b16139;
23+
}
24+
25+
/* Atelier-Savanna Orange */
26+
.hljs-number,
27+
.hljs-meta,
28+
.hljs-built_in,
29+
.hljs-builtin-name,
30+
.hljs-literal,
31+
.hljs-type,
32+
.hljs-params {
33+
color: #9f713c;
34+
}
35+
36+
/* Atelier-Savanna Green */
37+
.hljs-string,
38+
.hljs-symbol,
39+
.hljs-bullet {
40+
color: #489963;
41+
}
42+
43+
/* Atelier-Savanna Blue */
44+
.hljs-title,
45+
.hljs-section {
46+
color: #478c90;
47+
}
48+
49+
/* Atelier-Savanna Purple */
50+
.hljs-keyword,
51+
.hljs-selector-tag {
52+
color: #55859b;
53+
}
54+
55+
.hljs-deletion,
56+
.hljs-addition {
57+
color: #171c19;
58+
display: inline-block;
59+
width: 100%;
60+
}
61+
62+
.hljs-deletion {
63+
background-color: #b16139;
64+
}
65+
66+
.hljs-addition {
67+
background-color: #489963;
68+
}
69+
70+
.hljs {
71+
display: block;
72+
overflow-x: auto;
73+
background: #ecf4ee;
74+
color: #526057;
75+
padding: 0.5em;
76+
}
77+
78+
.hljs-emphasis {
79+
font-style: italic;
80+
}
81+
82+
.hljs-strong {
83+
font-weight: bold;
84+
}
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/* Base16 Atelier Seaside Light - Theme */
2+
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */
3+
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4+
5+
/* Atelier-Seaside Comment */
6+
.hljs-comment,
7+
.hljs-quote {
8+
color: #687d68;
9+
}
10+
11+
/* Atelier-Seaside Red */
12+
.hljs-variable,
13+
.hljs-template-variable,
14+
.hljs-attribute,
15+
.hljs-tag,
16+
.hljs-name,
17+
.hljs-regexp,
18+
.hljs-link,
19+
.hljs-name,
20+
.hljs-selector-id,
21+
.hljs-selector-class {
22+
color: #e6193c;
23+
}
24+
25+
/* Atelier-Seaside Orange */
26+
.hljs-number,
27+
.hljs-meta,
28+
.hljs-built_in,
29+
.hljs-builtin-name,
30+
.hljs-literal,
31+
.hljs-type,
32+
.hljs-params {
33+
color: #87711d;
34+
}
35+
36+
/* Atelier-Seaside Green */
37+
.hljs-string,
38+
.hljs-symbol,
39+
.hljs-bullet {
40+
color: #29a329;
41+
}
42+
43+
/* Atelier-Seaside Blue */
44+
.hljs-title,
45+
.hljs-section {
46+
color: #3d62f5;
47+
}
48+
49+
/* Atelier-Seaside Purple */
50+
.hljs-keyword,
51+
.hljs-selector-tag {
52+
color: #ad2bee;
53+
}
54+
55+
.hljs {
56+
display: block;
57+
overflow-x: auto;
58+
background: #f4fbf4;
59+
color: #5e6e5e;
60+
padding: 0.5em;
61+
}
62+
63+
.hljs-emphasis {
64+
font-style: italic;
65+
}
66+
67+
.hljs-strong {
68+
font-weight: bold;
69+
}
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/*
2+
3+
Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
4+
5+
*/
6+
7+
.hljs {
8+
display: block;
9+
overflow-x: auto;
10+
padding: 0.5em;
11+
background:#b7a68e url(./brown-papersq.png);
12+
}
13+
14+
.hljs-keyword,
15+
.hljs-selector-tag,
16+
.hljs-literal {
17+
color:#005599;
18+
font-weight:bold;
19+
}
20+
21+
.hljs,
22+
.hljs-subst {
23+
color: #363c69;
24+
}
25+
26+
.hljs-string,
27+
.hljs-title,
28+
.hljs-section,
29+
.hljs-type,
30+
.hljs-attribute,
31+
.hljs-symbol,
32+
.hljs-bullet,
33+
.hljs-built_in,
34+
.hljs-addition,
35+
.hljs-variable,
36+
.hljs-template-tag,
37+
.hljs-template-variable,
38+
.hljs-link,
39+
.hljs-name {
40+
color: #2c009f;
41+
}
42+
43+
.hljs-comment,
44+
.hljs-quote,
45+
.hljs-meta,
46+
.hljs-deletion {
47+
color: #802022;
48+
}
49+
50+
.hljs-keyword,
51+
.hljs-selector-tag,
52+
.hljs-literal,
53+
.hljs-doctag,
54+
.hljs-title,
55+
.hljs-section,
56+
.hljs-type,
57+
.hljs-name,
58+
.hljs-strong {
59+
font-weight: bold;
60+
}
61+
62+
.hljs-emphasis {
63+
font-style: italic;
64+
}

js/highlight/styles/far.css

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/*
2+
3+
FAR Style (c) MajestiC <majestic2k@gmail.com>
4+
5+
*/
6+
7+
.hljs {
8+
display: block;
9+
overflow-x: auto;
10+
padding: 0.5em;
11+
background: #000080;
12+
}
13+
14+
.hljs,
15+
.hljs-subst {
16+
color: #0ff;
17+
}
18+
19+
.hljs-string,
20+
.hljs-attribute,
21+
.hljs-symbol,
22+
.hljs-bullet,
23+
.hljs-built_in,
24+
.hljs-builtin-name,
25+
.hljs-template-tag,
26+
.hljs-template-variable,
27+
.hljs-addition {
28+
color: #ff0;
29+
}
30+
31+
.hljs-keyword,
32+
.hljs-selector-tag,
33+
.hljs-section,
34+
.hljs-type,
35+
.hljs-name,
36+
.hljs-selector-id,
37+
.hljs-selector-class,
38+
.hljs-variable {
39+
color: #fff;
40+
}
41+
42+
.hljs-comment,
43+
.hljs-quote,
44+
.hljs-doctag,
45+
.hljs-deletion {
46+
color: #888;
47+
}
48+
49+
.hljs-number,
50+
.hljs-regexp,
51+
.hljs-literal,
52+
.hljs-link {
53+
color: #0f0;
54+
}
55+
56+
.hljs-meta {
57+
color: #008080;
58+
}
59+
60+
.hljs-keyword,
61+
.hljs-selector-tag,
62+
.hljs-title,
63+
.hljs-section,
64+
.hljs-name,
65+
.hljs-strong {
66+
font-weight: bold;
67+
}
68+
69+
.hljs-emphasis {
70+
font-style: italic;
71+
}

0 commit comments

Comments
 (0)