aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/solarized
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-10-03 14:10:44 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-10-03 14:10:44 +0200
commit4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c (patch)
tree3c2f2885be96c7163444a7d366767a4ac2ca87f7 /themes/solarized
parent66e074b43dd4efc9f63c8fee784b99bcce51ab93 (diff)
downloadwallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.tar.gz
wallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.tar.zst
wallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.zip
embed themes
Diffstat (limited to 'themes/solarized')
-rw-r--r--themes/solarized/README.md6
-rw-r--r--themes/solarized/Solarized-LICENSE.txt19
-rw-r--r--themes/solarized/css/style-solarized.css223
-rw-r--r--themes/solarized/img/solarized/backtotop.pngbin0 -> 249 bytes
-rw-r--r--themes/solarized/img/solarized/bad-display.pngbin0 -> 434 bytes
-rw-r--r--themes/solarized/img/solarized/checkmark-off.pngbin0 -> 475 bytes
-rw-r--r--themes/solarized/img/solarized/checkmark-on.pngbin0 -> 163 bytes
-rw-r--r--themes/solarized/img/solarized/clock.pngbin0 -> 346 bytes
-rw-r--r--themes/solarized/img/solarized/down.pngbin0 -> 189 bytes
-rw-r--r--themes/solarized/img/solarized/envelop.pngbin0 -> 340 bytes
-rw-r--r--themes/solarized/img/solarized/flattr.pngbin0 -> 315 bytes
-rw-r--r--themes/solarized/img/solarized/left.pngbin0 -> 139 bytes
-rw-r--r--themes/solarized/img/solarized/link.pngbin0 -> 425 bytes
-rw-r--r--themes/solarized/img/solarized/remove.pngbin0 -> 332 bytes
-rw-r--r--themes/solarized/img/solarized/shaarli.pngbin0 -> 729 bytes
-rw-r--r--themes/solarized/img/solarized/star-off.pngbin0 -> 455 bytes
-rw-r--r--themes/solarized/img/solarized/star-on.pngbin0 -> 332 bytes
-rw-r--r--themes/solarized/img/solarized/top.pngbin0 -> 172 bytes
-rw-r--r--themes/solarized/img/solarized/twitter.pngbin0 -> 407 bytes
-rw-r--r--themes/solarized/screenshot.jpgbin0 -> 245928 bytes
20 files changed, 248 insertions, 0 deletions
diff --git a/themes/solarized/README.md b/themes/solarized/README.md
new file mode 100644
index 00000000..255e3cdd
--- /dev/null
+++ b/themes/solarized/README.md
@@ -0,0 +1,6 @@
1# solarized (Solarized) theme
2
3
4Theme created by NumEricR
5
6http://github.com/NumEricR/poche-themes
diff --git a/themes/solarized/Solarized-LICENSE.txt b/themes/solarized/Solarized-LICENSE.txt
new file mode 100644
index 00000000..a842f663
--- /dev/null
+++ b/themes/solarized/Solarized-LICENSE.txt
@@ -0,0 +1,19 @@
1Copyright (c) 2011 Ethan Schoonover
2
3Permission is hereby granted, free of charge, to any person obtaining a copy
4of this software and associated documentation files (the "Software"), to deal
5in the Software without restriction, including without limitation the rights
6to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7copies of the Software, and to permit persons to whom the Software is
8furnished to do so, subject to the following conditions:
9
10The above copyright notice and this permission notice shall be included in
11all copies or substantial portions of the Software.
12
13THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19THE SOFTWARE
diff --git a/themes/solarized/css/style-solarized.css b/themes/solarized/css/style-solarized.css
new file mode 100644
index 00000000..6e736630
--- /dev/null
+++ b/themes/solarized/css/style-solarized.css
@@ -0,0 +1,223 @@
1/*
2 * Solarized - by NumEricR
3 * http://github.com/NumEricR/poche-themes
4 * ==================================================
5 *
6 * Based on Solarized's palette - (c) 2011 Ethan Schoonover
7 * See http://ethanschoonover.com/solarized#usage-development
8 * See http://ethanschoonover.com/solarized#the-values
9 *
10 * Background: #fdf6e3 base 3
11 * Highlight: #eee8d5 base 2
12 * Primary content: #657b83 base 00
13 * Intermediate: #839496 base 0
14 * Emphasized content: #586e75 base 01
15 * Secondary content: #93a1a1 base 1
16 * Green: #859900
17 * Orange: #cb4b16
18 * Red: #dc322f
19 * Blue: #268bd2
20 *
21 * ================================================== */
22
23/* Background */
24
25body,
26#article_toolbar {
27 background-color: #fdf6e3;
28}
29
30/* Highlight */
31/* 2 different selectors for selection pseudo-elmt */
32/* See https://developer.mozilla.org/en-US/docs/Web/CSS/::selection */
33::-moz-selection {
34 background-color: #eee8d5;
35}
36::selection {
37 background-color: #eee8d5;
38}
39
40/* Primary content */
41
42body,
43a,
44a:hover,
45a:visited {
46 color: #657b83;
47}
48
49/* Secondary content */
50
51.tools p,
52.vieworiginal a,
53.vieworiginal a:hover,
54.vieworiginal a:visited {
55 color: #93a1a1;
56}
57
58#main #content .entrie,
59#article header,
60#article article {
61 border-bottom-color: #93a1a1;
62}
63
64/* Emphasized content */
65
66.entrie h2 a:hover,
67footer,
68footer a {
69 color: #586e75;
70}
71
72/* Colored content */
73
74#main .messages.success,
75#main .messages.warning,
76#main .messages.error,
77#main .messages.information,
78#main .messages.info {
79 background-color: #eee8d5;
80}
81
82#main .messages.success {
83 border-color: #859900;
84}
85
86#main .messages.success p {
87 color: #859900 !important; /* Overwrites !important used on messages.css */
88}
89
90#main .messages.warning {
91 border-color: #cb4b16;
92}
93
94#main .messages.warning p {
95 color: #cb4b16;
96}
97
98#main .messages.error {
99 border-color: #dc322f;
100}
101
102#main .messages.error p {
103 color: #dc322f !important; /* Overwrites !important used on messages.css */
104}
105
106#main .messages.information,
107#main .messages.info {
108 border-color: #268bd2;
109}
110
111#main .messages.information p,
112#main .messages.info p {
113 color: #268bd2;
114}
115
116/* Miscellaneous */
117
118.bouton,
119.bouton:hover,
120#main #links li a.current,
121#links a:hover,
122.pagination span.current,
123.pagination a:hover,
124.pagination a:active {
125 color: #fdf6e3;
126 background-color: #93a1a1;
127}
128
129.bouton:hover {
130 background-color: #657b83;
131}
132
133#login,
134#password,
135#password_repeat,
136#bookmarklet,
137.top_link {
138 background-color: #eee8d5;
139}
140
141#login,
142#password,
143#password_repeat,
144#bookmarklet {
145 padding: 5px;
146 border: 1px solid #93a1a1;
147 color: #657b83;
148}
149
150#bookmarklet {
151 border-style: dashed;
152}
153
154.pagination a {
155 border-color: #93a1a1;
156 color: #93a1a1;
157}
158
159.pagination span.current {
160 border-color: #eee8d5;
161}
162
163/* Images */
164
165a.back span {
166 background-image: url('../img/solarized/left.png');
167}
168
169a.top span {
170 background-image: url('../img/solarized/top.png');
171}
172
173a.fav span,
174a.fav-off span:hover {
175 background-image: url('../img/solarized/star-on.png');
176}
177
178a.fav span:hover,
179a.fav-off span {
180 background-image: url('../img/solarized/star-off.png');
181}
182
183a.archive span,
184a.archive-off span:hover {
185 background-image: url('../img/solarized/checkmark-on.png');
186}
187
188a.archive span:hover,
189a.archive-off span {
190 background-image: url('../img/solarized/checkmark-off.png');
191}
192
193a.twitter span {
194 background-image: url('../img/solarized/twitter.png');
195}
196
197a.shaarli span {
198 background-image: url('../img/solarized/shaarli.png');
199}
200
201a.flattr span {
202 background-image: url('../img/solarized/flattr.png');
203}
204
205a.email span {
206 background-image: url('../img/solarized/envelop.png');
207}
208
209a.delete span {
210 background-image: url('../img/solarized/remove.png');
211}
212
213a.link span {
214 background-image: url('../img/solarized/link.png');
215}
216
217a.bad-display span {
218 background-image: url('../img/solarized/bad-display.png');
219}
220
221a.reading-time span {
222 background-image: url('../img/solarized/clock.png');
223}
diff --git a/themes/solarized/img/solarized/backtotop.png b/themes/solarized/img/solarized/backtotop.png
new file mode 100644
index 00000000..a3e52318
--- /dev/null
+++ b/themes/solarized/img/solarized/backtotop.png
Binary files differ
diff --git a/themes/solarized/img/solarized/bad-display.png b/themes/solarized/img/solarized/bad-display.png
new file mode 100644
index 00000000..ae99ab37
--- /dev/null
+++ b/themes/solarized/img/solarized/bad-display.png
Binary files differ
diff --git a/themes/solarized/img/solarized/checkmark-off.png b/themes/solarized/img/solarized/checkmark-off.png
new file mode 100644
index 00000000..20cd26b3
--- /dev/null
+++ b/themes/solarized/img/solarized/checkmark-off.png
Binary files differ
diff --git a/themes/solarized/img/solarized/checkmark-on.png b/themes/solarized/img/solarized/checkmark-on.png
new file mode 100644
index 00000000..87a2b799
--- /dev/null
+++ b/themes/solarized/img/solarized/checkmark-on.png
Binary files differ
diff --git a/themes/solarized/img/solarized/clock.png b/themes/solarized/img/solarized/clock.png
new file mode 100644
index 00000000..f7dabfcf
--- /dev/null
+++ b/themes/solarized/img/solarized/clock.png
Binary files differ
diff --git a/themes/solarized/img/solarized/down.png b/themes/solarized/img/solarized/down.png
new file mode 100644
index 00000000..622ff87b
--- /dev/null
+++ b/themes/solarized/img/solarized/down.png
Binary files differ
diff --git a/themes/solarized/img/solarized/envelop.png b/themes/solarized/img/solarized/envelop.png
new file mode 100644
index 00000000..1caf7d43
--- /dev/null
+++ b/themes/solarized/img/solarized/envelop.png
Binary files differ
diff --git a/themes/solarized/img/solarized/flattr.png b/themes/solarized/img/solarized/flattr.png
new file mode 100644
index 00000000..18e00f86
--- /dev/null
+++ b/themes/solarized/img/solarized/flattr.png
Binary files differ
diff --git a/themes/solarized/img/solarized/left.png b/themes/solarized/img/solarized/left.png
new file mode 100644
index 00000000..9780faee
--- /dev/null
+++ b/themes/solarized/img/solarized/left.png
Binary files differ
diff --git a/themes/solarized/img/solarized/link.png b/themes/solarized/img/solarized/link.png
new file mode 100644
index 00000000..d0e12862
--- /dev/null
+++ b/themes/solarized/img/solarized/link.png
Binary files differ
diff --git a/themes/solarized/img/solarized/remove.png b/themes/solarized/img/solarized/remove.png
new file mode 100644
index 00000000..d5113d17
--- /dev/null
+++ b/themes/solarized/img/solarized/remove.png
Binary files differ
diff --git a/themes/solarized/img/solarized/shaarli.png b/themes/solarized/img/solarized/shaarli.png
new file mode 100644
index 00000000..1eb30f60
--- /dev/null
+++ b/themes/solarized/img/solarized/shaarli.png
Binary files differ
diff --git a/themes/solarized/img/solarized/star-off.png b/themes/solarized/img/solarized/star-off.png
new file mode 100644
index 00000000..afd7d80c
--- /dev/null
+++ b/themes/solarized/img/solarized/star-off.png
Binary files differ
diff --git a/themes/solarized/img/solarized/star-on.png b/themes/solarized/img/solarized/star-on.png
new file mode 100644
index 00000000..3a772512
--- /dev/null
+++ b/themes/solarized/img/solarized/star-on.png
Binary files differ
diff --git a/themes/solarized/img/solarized/top.png b/themes/solarized/img/solarized/top.png
new file mode 100644
index 00000000..d20001a4
--- /dev/null
+++ b/themes/solarized/img/solarized/top.png
Binary files differ
diff --git a/themes/solarized/img/solarized/twitter.png b/themes/solarized/img/solarized/twitter.png
new file mode 100644
index 00000000..109d7151
--- /dev/null
+++ b/themes/solarized/img/solarized/twitter.png
Binary files differ
diff --git a/themes/solarized/screenshot.jpg b/themes/solarized/screenshot.jpg
new file mode 100644
index 00000000..07d402e3
--- /dev/null
+++ b/themes/solarized/screenshot.jpg
Binary files differ