Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoineÐ <ad-git@kher.nl>2020-05-08 19:08:35 +0300
committerAntoineÐ <ad-git@kher.nl>2020-05-08 19:08:35 +0300
commit7ed868358642ca42292e884d2a1dc147d09ac00f (patch)
treed491052b30ba13abb31a2d65b1eca758c2359ac5
parenta70383c62e8603a5c4678a8c986ea3c587fda30a (diff)
add theme Gruvbox
-rw-r--r--data/ArticleView/style.css68
-rw-r--r--po/af.po4
-rw-r--r--po/am.po4
-rw-r--r--po/ar.po4
-rw-r--r--po/ast.po4
-rw-r--r--po/az.po4
-rw-r--r--po/be.po4
-rw-r--r--po/bg.po4
-rw-r--r--po/bn.po4
-rw-r--r--po/bs.po4
-rw-r--r--po/ca.po4
-rw-r--r--po/ckb.po4
-rw-r--r--po/cs.po4
-rw-r--r--po/da.po4
-rw-r--r--po/de.po4
-rw-r--r--po/el.po4
-rw-r--r--po/en_AU.po4
-rw-r--r--po/en_CA.po4
-rw-r--r--po/en_GB.po4
-rw-r--r--po/eo.po4
-rw-r--r--po/es.po4
-rw-r--r--po/et.po4
-rw-r--r--po/eu.po4
-rw-r--r--po/fa.po4
-rw-r--r--po/feedreader.pot4
-rw-r--r--po/fi.po4
-rw-r--r--po/fr.po4
-rw-r--r--po/fr_CA.po4
-rw-r--r--po/gl.po4
-rw-r--r--po/he.po4
-rw-r--r--po/hi.po4
-rw-r--r--po/hr.po4
-rw-r--r--po/hu.po4
-rw-r--r--po/hy.po4
-rw-r--r--po/id.po4
-rw-r--r--po/it.po4
-rw-r--r--po/ja.po4
-rw-r--r--po/ka.po4
-rw-r--r--po/ko.po4
-rw-r--r--po/ky.po4
-rw-r--r--po/lb.po4
-rw-r--r--po/lo.po4
-rw-r--r--po/lt.po4
-rw-r--r--po/lv.po4
-rw-r--r--po/ml.po4
-rw-r--r--po/mr.po4
-rw-r--r--po/ms.po4
-rw-r--r--po/nb.po4
-rw-r--r--po/nl.po4
-rw-r--r--po/nn.po4
-rw-r--r--po/pl.po4
-rw-r--r--po/pt.po4
-rw-r--r--po/pt_BR.po4
-rw-r--r--po/ro.po4
-rw-r--r--po/ro_RO.po4
-rw-r--r--po/ru.po4
-rw-r--r--po/rue.po4
-rw-r--r--po/si.po4
-rw-r--r--po/sk.po4
-rw-r--r--po/sl.po4
-rw-r--r--po/sma.po4
-rw-r--r--po/sq.po4
-rw-r--r--po/sr.po4
-rw-r--r--po/sv.po4
-rw-r--r--po/sw.po4
-rw-r--r--po/ta.po4
-rw-r--r--po/te.po4
-rw-r--r--po/th.po4
-rw-r--r--po/tr.po4
-rw-r--r--po/uk.po4
-rw-r--r--po/vi.po4
-rw-r--r--po/zh_CN.po4
-rw-r--r--po/zh_HK.po4
-rw-r--r--po/zh_TW.po4
-rw-r--r--schemas/org.gnome.feedreader.gschema.xml1
-rw-r--r--src/Enums.vala3
-rw-r--r--src/Utils.vala4
-rw-r--r--src/Widgets/SettingsDialog.vala2
78 files changed, 368 insertions, 2 deletions
diff --git a/data/ArticleView/style.css b/data/ArticleView/style.css
index 82367cd7..916fe682 100644
--- a/data/ArticleView/style.css
+++ b/data/ArticleView/style.css
@@ -480,6 +480,8 @@ body.theme.midnight div.frcontent p {
text-align: justify;
}
+/* SPRING THEME */
+
body.theme.spring {
background: #f8fff2;
}
@@ -515,6 +517,8 @@ body.theme.spring div.frcontent h2 {
border-color: #405e80;
}
+/* PARCHMENT THEME */
+
body.theme.parchment {
background: #faf2e1;
}
@@ -546,3 +550,67 @@ body.theme.parchment div.frcontent h6,
body.theme.parchment div.frcontent p {
color: rgba(0, 0, 0, 0.8);
}
+
+/* GRUVBOX THEME */
+
+body.theme.gruvbox {
+ color: #fbf1c7;
+ background: #282828;
+}
+
+body.theme.gruvbox body,
+body.theme.gruvbox p {
+ color: #fbf1c7;
+}
+
+body.theme.gruvbox pre,
+body.theme.gruvbox pre code,
+body.theme.gruvbox code {
+ background-color: #1d2021;
+ color: #fbf1c7;
+ font-family: 'FuraCode Nerd Font', 'Fira Code', 'Fira Mono', monospace, Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, serif;
+}
+
+body.theme.gruvbox table,
+body.theme.gruvbox th,
+body.theme.gruvbox td {
+ border: 1px solid #928374;
+}
+
+body.theme.gruvbox header.post h1 {
+ color: #fbf1c7;
+ line-height: 1.2;
+}
+
+body.theme.gruvbox header.post h1 a {
+ color: #928374;
+}
+
+body.theme.gruvbox header.post span.source {
+ color: #689d6a;
+}
+
+body.theme.gruvbox div.frcontent p,
+body.theme.gruvbox header.post span.author {
+ color: #fbf1c7;
+}
+
+body.theme.gruvbox div.frcontent a {
+ color: #689d6a;
+}
+
+body.theme.gruvbox div.frcontent h1,
+body.theme.gruvbox div.frcontent h2,
+body.theme.gruvbox div.frcontent h3,
+body.theme.gruvbox div.frcontent h4 {
+ color: #928374;
+}
+
+body.theme.midnight div.frcontent body,
+body.theme.midnight div.frcontent ul,
+body.theme.midnight div.frcontent figcaption,
+body.theme.midnight div.frcontent h5,
+body.theme.midnight div.frcontent h6,
+body.theme.midnight div.frcontent p {
+ color: #fbf1c7;
+} \ No newline at end of file
diff --git a/po/af.po b/po/af.po
index 589fc329..05ec79f2 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/am.po b/po/am.po
index 589fc329..05ec79f2 100644
--- a/po/am.po
+++ b/po/am.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 589fc329..05ec79f2 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ast.po b/po/ast.po
index 589fc329..05ec79f2 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/az.po b/po/az.po
index 589fc329..05ec79f2 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/be.po b/po/be.po
index bb105f0f..a161dab7 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1231,6 +1231,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index 589fc329..05ec79f2 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index 589fc329..05ec79f2 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index 589fc329..05ec79f2 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index 5fe0593e..2c4c767c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1282,6 +1282,10 @@ msgstr "Mitjanit"
msgid "Parchment"
msgstr "Pergamí"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Família de les fonts"
diff --git a/po/ckb.po b/po/ckb.po
index 589fc329..05ec79f2 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index a8dbea42..f23a0783 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1279,6 +1279,10 @@ msgstr "Půlnoc"
msgid "Parchment"
msgstr "Pergamen"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/da.po b/po/da.po
index 589fc329..05ec79f2 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/de.po b/po/de.po
index 3c85d259..c20efd7a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1292,6 +1292,10 @@ msgstr "Mitternacht"
msgid "Parchment"
msgstr "Pergament"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Schriftfamilie"
diff --git a/po/el.po b/po/el.po
index 589fc329..05ec79f2 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/en_AU.po b/po/en_AU.po
index 589fc329..05ec79f2 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/en_CA.po b/po/en_CA.po
index 589fc329..05ec79f2 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/en_GB.po b/po/en_GB.po
index ccc56dac..c67a97a0 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1286,6 +1286,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/eo.po b/po/eo.po
index 47eb2a25..8d151fba 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -1267,6 +1267,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/es.po b/po/es.po
index edd98ddd..369105c2 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1294,6 +1294,10 @@ msgstr "Medianoche"
msgid "Parchment"
msgstr "Pergamino"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Familia de fuentes"
diff --git a/po/et.po b/po/et.po
index 83864d44..fc5e202a 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1232,6 +1232,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/eu.po b/po/eu.po
index 589fc329..05ec79f2 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index a217d7be..821585b1 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -1235,6 +1235,10 @@ msgstr "نیمه‌شب"
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "خانواده فونت"
diff --git a/po/feedreader.pot b/po/feedreader.pot
index d51115e2..173b4095 100644
--- a/po/feedreader.pot
+++ b/po/feedreader.pot
@@ -1231,6 +1231,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 1c8600e5..59a205be 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1258,6 +1258,10 @@ msgstr "Keskiyö"
msgid "Parchment"
msgstr "Pergamentti"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Fonttiperhe"
diff --git a/po/fr.po b/po/fr.po
index 60b7b93a..1e4a0c9d 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1288,6 +1288,10 @@ msgstr "Midnight"
msgid "Parchment"
msgstr "Parchment"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Police"
diff --git a/po/fr_CA.po b/po/fr_CA.po
index 589fc329..05ec79f2 100644
--- a/po/fr_CA.po
+++ b/po/fr_CA.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 589fc329..05ec79f2 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/he.po b/po/he.po
index 589fc329..05ec79f2 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 589fc329..05ec79f2 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 589fc329..05ec79f2 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index 5bd8ea4c..61c088be 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1227,6 +1227,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/hy.po b/po/hy.po
index 589fc329..05ec79f2 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/id.po b/po/id.po
index d887fbf5..b9c1393a 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1249,6 +1249,10 @@ msgstr "Midnight"
msgid "Parchment"
msgstr "Parchment"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/it.po b/po/it.po
index 244eaca9..6e0d2fac 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1277,6 +1277,10 @@ msgstr "Mezzanotte"
msgid "Parchment"
msgstr "Pergamena"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Tipo di Font"
diff --git a/po/ja.po b/po/ja.po
index 5221cbbb..2091eae6 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1246,6 +1246,10 @@ msgstr "真夜中"
msgid "Parchment"
msgstr "証書"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ka.po b/po/ka.po
index 589fc329..05ec79f2 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index 8c2a1542..c8afa1f5 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1265,6 +1265,10 @@ msgstr "한 밤중"
msgid "Parchment"
msgstr "양피지"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ky.po b/po/ky.po
index 589fc329..05ec79f2 100644
--- a/po/ky.po
+++ b/po/ky.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/lb.po b/po/lb.po
index 589fc329..05ec79f2 100644
--- a/po/lb.po
+++ b/po/lb.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/lo.po b/po/lo.po
index 589fc329..05ec79f2 100644
--- a/po/lo.po
+++ b/po/lo.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 2b399359..1f74e6f5 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1284,6 +1284,10 @@ msgstr "Vidurnaktis"
msgid "Parchment"
msgstr "Pergamentas"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Šriftas"
diff --git a/po/lv.po b/po/lv.po
index 589fc329..05ec79f2 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ml.po b/po/ml.po
index 589fc329..05ec79f2 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/mr.po b/po/mr.po
index 589fc329..05ec79f2 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ms.po b/po/ms.po
index 589fc329..05ec79f2 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index dcd776e4..eaf03ec1 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1274,6 +1274,10 @@ msgstr "Midnatt"
msgid "Parchment"
msgstr "Pergament"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Skriftfamilie"
diff --git a/po/nl.po b/po/nl.po
index 6e90de3a..619fb384 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1280,6 +1280,10 @@ msgstr "Middernacht"
msgid "Parchment"
msgstr "Perkament"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Lettertype"
diff --git a/po/nn.po b/po/nn.po
index 589fc329..05ec79f2 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 12a32217..0ba481ba 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1281,6 +1281,10 @@ msgstr "Północ"
msgid "Parchment"
msgstr "Pergamin"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Grupa czcionek"
diff --git a/po/pt.po b/po/pt.po
index 578a8e8f..c160ae04 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1252,6 +1252,10 @@ msgstr "Meia-noite"
msgid "Parchment"
msgstr "Pergaminho"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index dc483d26..6c3c438d 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1283,6 +1283,10 @@ msgstr "Meia noite"
msgid "Parchment"
msgstr "Pergaminho"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Fonte"
diff --git a/po/ro.po b/po/ro.po
index 65dd88e4..291338be 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1253,6 +1253,10 @@ msgstr "Miezul nopții"
msgid "Parchment"
msgstr "Pergament"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index b890103e..79030e3d 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -1252,6 +1252,10 @@ msgstr "Miezul nopții"
msgid "Parchment"
msgstr "Pergament"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 5af8d92f..65919498 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1271,6 +1271,10 @@ msgstr "Полночь"
msgid "Parchment"
msgstr "Пергамент"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/rue.po b/po/rue.po
index 589fc329..05ec79f2 100644
--- a/po/rue.po
+++ b/po/rue.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/si.po b/po/si.po
index 589fc329..05ec79f2 100644
--- a/po/si.po
+++ b/po/si.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index 589fc329..05ec79f2 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/sl.po b/po/sl.po
index 589fc329..05ec79f2 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/sma.po b/po/sma.po
index 589fc329..05ec79f2 100644
--- a/po/sma.po
+++ b/po/sma.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/sq.po b/po/sq.po
index 2faefd63..7bb0f781 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1277,6 +1277,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 589fc329..05ec79f2 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index ccc2e17a..3e2d1c6b 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1280,6 +1280,10 @@ msgstr "Midnatt"
msgid "Parchment"
msgstr "Pergament"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Typsnittsfamilj"
diff --git a/po/sw.po b/po/sw.po
index cd8a90f1..ef2872ca 100644
--- a/po/sw.po
+++ b/po/sw.po
@@ -1232,6 +1232,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/ta.po b/po/ta.po
index 589fc329..05ec79f2 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/te.po b/po/te.po
index 589fc329..05ec79f2 100644
--- a/po/te.po
+++ b/po/te.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/th.po b/po/th.po
index 589fc329..05ec79f2 100644
--- a/po/th.po
+++ b/po/th.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 73cf288e..a6eeaddc 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1276,6 +1276,10 @@ msgstr "Gece yarısı"
msgid "Parchment"
msgstr "Tirşe"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "Yazı Tipi Ailesi"
diff --git a/po/uk.po b/po/uk.po
index da079735..9827f4de 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1261,6 +1261,10 @@ msgstr "Вечірній"
msgid "Parchment"
msgstr "Пергаментний"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/vi.po b/po/vi.po
index 589fc329..05ec79f2 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index db281ddf..07a42f8f 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1270,6 +1270,10 @@ msgstr "暗夜"
msgid "Parchment"
msgstr "复古"
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr "字体"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index 589fc329..05ec79f2 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -1219,6 +1219,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 975c59d6..ec4347e3 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1227,6 +1227,10 @@ msgstr ""
msgid "Parchment"
msgstr ""
+#: src/Widgets/SettingsDialog.vala:111
+msgid "Gruvbox"
+msgstr ""
+
#: src/Widgets/SettingsDialog.vala:116
msgid "Font Familly"
msgstr ""
diff --git a/schemas/org.gnome.feedreader.gschema.xml b/schemas/org.gnome.feedreader.gschema.xml
index cb13cfdb..12149bbe 100644
--- a/schemas/org.gnome.feedreader.gschema.xml
+++ b/schemas/org.gnome.feedreader.gschema.xml
@@ -5,6 +5,7 @@
<value nick="SPRING" value="1"/>
<value nick="MIDNIGHT" value="2"/>
<value nick="PARCHMENT" value="3"/>
+ <value nick="GRUVBOX" value="4"/>
</enum>
<enum id="org.gnome.feedreader.drop-articles-duration">
diff --git a/src/Enums.vala b/src/Enums.vala
index 9212e7f9..5a9d953f 100644
--- a/src/Enums.vala
+++ b/src/Enums.vala
@@ -155,7 +155,8 @@ namespace FeedReader {
DEFAULT,
SPRING,
MIDNIGHT,
- PARCHMENT
+ PARCHMENT,
+ GRUVBOX
}
public enum FeedListTheme {
diff --git a/src/Utils.vala b/src/Utils.vala
index 92d9e458..6ebd0913 100644
--- a/src/Utils.vala
+++ b/src/Utils.vala
@@ -689,6 +689,10 @@ switch(Settings.general().get_enum("article-theme"))
case ArticleTheme.PARCHMENT:
theme += "parchment";
break;
+
+ case ArticleTheme.GRUVBOX:
+ theme += "gruvbox";
+ break;
}
string theme_id = "$THEME";
diff --git a/src/Widgets/SettingsDialog.vala b/src/Widgets/SettingsDialog.vala
index 72798f0f..a173ec09 100644
--- a/src/Widgets/SettingsDialog.vala
+++ b/src/Widgets/SettingsDialog.vala
@@ -110,7 +110,7 @@ public class FeedReader.SettingsDialog : Gtk.Dialog {
var articleview_settings = headline(_("Article View:"));
- var article_theme = new SettingDropbox(_("Theme"), Settings.general(), "article-theme", {_("Default"), _("Spring"), _("Midnight"), _("Parchment")});
+ var article_theme = new SettingDropbox(_("Theme"), Settings.general(), "article-theme", {_("Default"), _("Spring"), _("Midnight"), _("Parchment"), _("Gruvbox")});
article_theme.changed.connect(() => {
ColumnView.get_default().reloadArticleView();
});