From a8dc308ab504fa777b9a2b304d0575869764a295 Mon Sep 17 00:00:00 2001 From: danix Date: Sun, 26 Feb 2023 11:12:54 +0100 Subject: [PATCH] different svgs for dark and light theme. fixed typo --- gitweb-danixland/gitweb.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gitweb-danixland/gitweb.css b/gitweb-danixland/gitweb.css index 278d798..5a06b46 100644 --- a/gitweb-danixland/gitweb.css +++ b/gitweb-danixland/gitweb.css @@ -55,7 +55,6 @@ a { outline: none; } --link-visited: #e7b788; --border: 34,40,49,0.035; --accent: #FD7014; - --svg-color: navy; --file-icon: url("file-dark.svg"); --dir-icon: url("folder-dark.svg"); --ref-icon: url("commit-dark.svg"); @@ -68,7 +67,11 @@ a { outline: none; } --bg-alt: #222831; --fg: #D8D9CF; --border: 216,217,207,0.2; - --svg-color: teal; + --file-icon: url("file.svg"); + --dir-icon: url("folder.svg"); + --ref-icon: url("commit.svg"); + --tag-icon: url("tag.svg"); + --branch-icon: url("merge.svg"); } } -- 2.20.1