From b73dc3ea5c735f09ff6c91e94208f2d6a9e9cf87 Mon Sep 17 00:00:00 2001 From: asforest Date: Fri, 8 Apr 2022 19:57:45 +0800 Subject: [PATCH 1/2] Make text selected from search bar easily distinguishable --- vue-dark.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vue-dark.css b/vue-dark.css index aaf502a..4bff450 100755 --- a/vue-dark.css +++ b/vue-dark.css @@ -7,6 +7,8 @@ --active-file-bg-color: hsl(153, 47%, 40%); --select-text-font-color: #aaaaaa; --active-file-text-color: #eeeeee; + --search-select-bg-color: #13c172; + --search-select-text-color: #000; --bg-color: #1d1d1d; --item-hover-bg-color: var(--select-text-bg-color); --text-color: #aaaaaa; From ac157e314a6c228572fb58671f982d980c844c2d Mon Sep 17 00:00:00 2001 From: asforest Date: Fri, 8 Apr 2022 20:00:28 +0800 Subject: [PATCH 2/2] Decrease scrollbar handle brightness --- vue-dark.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vue-dark.css b/vue-dark.css index 4bff450..ce232b3 100755 --- a/vue-dark.css +++ b/vue-dark.css @@ -811,9 +811,9 @@ html{ } ::-webkit-scrollbar-thumb { - background: #ffffff5e; + background: #ffffff35; } ::-webkit-scrollbar-thumb:active { - background: #ffffff9c; + background: #ffffff65; }