LibreY

- privacy respecting meta search engine
git clone git://git.acid.vegas/LibreY.git
Log | Files | Refs | Archive | README | LICENSE

commit a7b96cd89fb626173339c2bbd4e335ec6f0c6b4d
parent fc0e4eca8fb10237a17ddb39b0c1ede580e373e5
Author: hnhx <49120638+hnhx@users.noreply.github.com>
Date: Mon, 1 May 2023 09:41:24 +0200

Merge pull request #217 from Hukasx0/main Added two new themes: ubuntu and tokyo_night

Diffstat:
Msettings.php | 4+++-
Astatic/css/tokyo_night.css | 26++++++++++++++++++++++++++
Astatic/css/ubuntu.css | 26++++++++++++++++++++++++++

3 files changed, 55 insertions(+), 1 deletion(-)

diff --git a/settings.php b/settings.php
@@ -62,7 +62,9 @@
                     <option value=\"startpage\">Startpage Dark</option>
                     <option value=\"gruvbox\">Gruvbox</option>
                     <option value=\"github_night\">GitHub Night</option>
-                    <option value=\"catppuccin\">Catppucin</option>";
+                    <option value=\"catppuccin\">Catppucin</option>
+                    <option value=\"ubuntu\">Ubuntu</option>
+                    <option value=\"tokyo_night\">Tokyo night</option>";
 
                     if (isset($_COOKIE["theme"]))
                     {
diff --git a/static/css/tokyo_night.css b/static/css/tokyo_night.css
@@ -0,0 +1,26 @@
+:root {
+    --main-bg: #24283b;
+    --main-fg: #cfc9c2;
+
+    --result-link-fg: #bb9af7;
+    --result-fg: #a2a08e;
+
+    --button-bg: #343b58;
+
+    --special-result-border: border 0;
+    --special-text-background: #1a1b26;
+    --special-text-color: #c0caf5;
+
+    --search-container-text-color: #f2efd3;
+    --search-container-background-color: #565f89;
+    --search-container-background-border: #bb9af7;
+
+    --search-form-background-color: #1a1b26;
+
+    --border: #565f89;
+
+    --footer-fg: #f2efd3;
+    --footer-bg: #1a1b26;
+
+    color-scheme: dark;
+}
diff --git a/static/css/ubuntu.css b/static/css/ubuntu.css
@@ -0,0 +1,26 @@
+:root {
+    --main-bg: #2C001E;
+    --main-fg: #FFFFFF;
+
+    --result-link-fg: #84de32;
+    --result-fg: #a2a08e;
+
+    --button-bg: #5E2750;
+
+    --special-result-border: border 0;
+    --special-text-background: #333333;
+    --special-text-color: #FFFFFF;
+
+    --search-container-text-color: #f2efd3;
+    --search-container-background-color: #77216F;
+    --search-container-background-border: #E95420;
+
+    --search-form-background-color: #333333;
+
+    --border: #77216F;
+
+    --footer-fg: #f2efd3;
+    --footer-bg: #5E2750;
+
+    color-scheme: dark;
+}