aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/dark
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/dark
parent66e074b43dd4efc9f63c8fee784b99bcce51ab93 (diff)
downloadwallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.tar.gz
wallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.tar.zst
wallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.zip
embed themes
Diffstat (limited to 'themes/dark')
-rw-r--r--themes/dark/README.md3
-rw-r--r--themes/dark/css/style-dark.css78
-rwxr-xr-xthemes/dark/img/dark/backtotop.pngbin0 -> 326 bytes
-rwxr-xr-xthemes/dark/img/dark/bad-display.pngbin0 -> 343 bytes
-rw-r--r--themes/dark/img/dark/checkmark-off.pngbin0 -> 277 bytes
-rw-r--r--themes/dark/img/dark/checkmark-on.pngbin0 -> 235 bytes
-rwxr-xr-xthemes/dark/img/dark/clock.pngbin0 -> 332 bytes
-rw-r--r--themes/dark/img/dark/down.pngbin0 -> 216 bytes
-rw-r--r--themes/dark/img/dark/envelop.pngbin0 -> 285 bytes
-rwxr-xr-xthemes/dark/img/dark/flattr.pngbin0 -> 270 bytes
-rw-r--r--themes/dark/img/dark/left.pngbin0 -> 196 bytes
-rwxr-xr-xthemes/dark/img/dark/link.pngbin0 -> 341 bytes
-rw-r--r--themes/dark/img/dark/remove.pngbin0 -> 252 bytes
-rw-r--r--themes/dark/img/dark/shaarli.pngbin0 -> 729 bytes
-rw-r--r--themes/dark/img/dark/star-off.pngbin0 -> 314 bytes
-rw-r--r--themes/dark/img/dark/star-on.pngbin0 -> 281 bytes
-rw-r--r--themes/dark/img/dark/top.pngbin0 -> 212 bytes
-rw-r--r--themes/dark/img/dark/twitter.pngbin0 -> 297 bytes
-rw-r--r--themes/dark/screenshot.jpgbin0 -> 664859 bytes
19 files changed, 81 insertions, 0 deletions
diff --git a/themes/dark/README.md b/themes/dark/README.md
new file mode 100644
index 00000000..92077994
--- /dev/null
+++ b/themes/dark/README.md
@@ -0,0 +1,3 @@
1# dark theme
2
3theme created by Nicolas Lœuillet aka nico_somb \ No newline at end of file
diff --git a/themes/dark/css/style-dark.css b/themes/dark/css/style-dark.css
new file mode 100644
index 00000000..6d507516
--- /dev/null
+++ b/themes/dark/css/style-dark.css
@@ -0,0 +1,78 @@
1body {
2 color: #d4d4d4;
3 background-color: #262627;
4}
5
6a,
7a:hover,
8a:visited {
9 color: #d4d4d4;
10}
11
12a.back span {
13 background-image: url('../img/dark/left.png');
14}
15
16a.top span {
17 background-image: url('../img/dark/top.png');
18}
19
20a.fav span,
21a.fav-off span:hover {
22 background-image: url('../img/dark/star-on.png');
23}
24
25a.fav span:hover,
26a.fav-off span {
27 background-image: url('../img/dark/star-off.png');
28}
29
30a.archive span,
31a.archive-off span:hover {
32 background-image: url('../img/dark/checkmark-on.png');
33}
34
35a.archive span:hover,
36a.archive-off span {
37 background-image: url('../img/dark/checkmark-off.png');
38}
39
40a.twitter span {
41 background-image: url('../img/dark/twitter.png');
42}
43
44a.shaarli span {
45 background-image: url('../img/dark/shaarli.png');
46}
47
48a.flattr span {
49 background-image: url('../img/dark/flattr.png');
50}
51
52a.email span {
53 background-image: url('../img/dark/envelop.png');
54}
55
56a.delete span {
57 background-image: url('../img/dark/remove.png');
58}
59
60a.link span {
61 background-image: url('../img/dark/link.png');
62}
63
64a.bad-display span {
65 background-image: url('../img/dark/bad-display.png');
66}
67
68a.reading-time span {
69 background-image: url('../img/dark/clock.png');
70}
71
72.pagination a {
73 color: #aaa;
74}
75
76#article_toolbar {
77 background: #262627;
78} \ No newline at end of file
diff --git a/themes/dark/img/dark/backtotop.png b/themes/dark/img/dark/backtotop.png
new file mode 100755
index 00000000..051238ef
--- /dev/null
+++ b/themes/dark/img/dark/backtotop.png
Binary files differ
diff --git a/themes/dark/img/dark/bad-display.png b/themes/dark/img/dark/bad-display.png
new file mode 100755
index 00000000..6866799f
--- /dev/null
+++ b/themes/dark/img/dark/bad-display.png
Binary files differ
diff --git a/themes/dark/img/dark/checkmark-off.png b/themes/dark/img/dark/checkmark-off.png
new file mode 100644
index 00000000..3db5a06d
--- /dev/null
+++ b/themes/dark/img/dark/checkmark-off.png
Binary files differ
diff --git a/themes/dark/img/dark/checkmark-on.png b/themes/dark/img/dark/checkmark-on.png
new file mode 100644
index 00000000..cd3abb2c
--- /dev/null
+++ b/themes/dark/img/dark/checkmark-on.png
Binary files differ
diff --git a/themes/dark/img/dark/clock.png b/themes/dark/img/dark/clock.png
new file mode 100755
index 00000000..6164e92b
--- /dev/null
+++ b/themes/dark/img/dark/clock.png
Binary files differ
diff --git a/themes/dark/img/dark/down.png b/themes/dark/img/dark/down.png
new file mode 100644
index 00000000..b9d536a7
--- /dev/null
+++ b/themes/dark/img/dark/down.png
Binary files differ
diff --git a/themes/dark/img/dark/envelop.png b/themes/dark/img/dark/envelop.png
new file mode 100644
index 00000000..6be1c886
--- /dev/null
+++ b/themes/dark/img/dark/envelop.png
Binary files differ
diff --git a/themes/dark/img/dark/flattr.png b/themes/dark/img/dark/flattr.png
new file mode 100755
index 00000000..0404aaea
--- /dev/null
+++ b/themes/dark/img/dark/flattr.png
Binary files differ
diff --git a/themes/dark/img/dark/left.png b/themes/dark/img/dark/left.png
new file mode 100644
index 00000000..a0a53631
--- /dev/null
+++ b/themes/dark/img/dark/left.png
Binary files differ
diff --git a/themes/dark/img/dark/link.png b/themes/dark/img/dark/link.png
new file mode 100755
index 00000000..db62819d
--- /dev/null
+++ b/themes/dark/img/dark/link.png
Binary files differ
diff --git a/themes/dark/img/dark/remove.png b/themes/dark/img/dark/remove.png
new file mode 100644
index 00000000..f8ad56a3
--- /dev/null
+++ b/themes/dark/img/dark/remove.png
Binary files differ
diff --git a/themes/dark/img/dark/shaarli.png b/themes/dark/img/dark/shaarli.png
new file mode 100644
index 00000000..1eb30f60
--- /dev/null
+++ b/themes/dark/img/dark/shaarli.png
Binary files differ
diff --git a/themes/dark/img/dark/star-off.png b/themes/dark/img/dark/star-off.png
new file mode 100644
index 00000000..6a0133a7
--- /dev/null
+++ b/themes/dark/img/dark/star-off.png
Binary files differ
diff --git a/themes/dark/img/dark/star-on.png b/themes/dark/img/dark/star-on.png
new file mode 100644
index 00000000..a9f96eaa
--- /dev/null
+++ b/themes/dark/img/dark/star-on.png
Binary files differ
diff --git a/themes/dark/img/dark/top.png b/themes/dark/img/dark/top.png
new file mode 100644
index 00000000..954a8c0a
--- /dev/null
+++ b/themes/dark/img/dark/top.png
Binary files differ
diff --git a/themes/dark/img/dark/twitter.png b/themes/dark/img/dark/twitter.png
new file mode 100644
index 00000000..cfcfe419
--- /dev/null
+++ b/themes/dark/img/dark/twitter.png
Binary files differ
diff --git a/themes/dark/screenshot.jpg b/themes/dark/screenshot.jpg
new file mode 100644
index 00000000..daaad6c9
--- /dev/null
+++ b/themes/dark/screenshot.jpg
Binary files differ