From c8c4a3aa4f03f095cf148c738a7455e29d05f0c6 Mon Sep 17 00:00:00 2001 From: Jannis Baum Date: Sun, 18 Aug 2024 10:23:21 +0200 Subject: [PATCH] feat(#102): color suggestions --- static/colors.css | 4 ++-- static/style.css | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/static/colors.css b/static/colors.css index 9b012ca5..d3bf14c0 100644 --- a/static/colors.css +++ b/static/colors.css @@ -15,8 +15,8 @@ --border-regular: #353535; --border-muted: #303030; - --icon-directory: #59739c; - --icon-file: #989898; + --icon-directory: var(--text-secondary); + --icon-file: var(--text-secondary); --icon-back: var(--text-secondary); --syntax-text: var(--text-primary); diff --git a/static/style.css b/static/style.css index 1f831e7e..8261c995 100644 --- a/static/style.css +++ b/static/style.css @@ -31,6 +31,10 @@ li[class^='dir-list-'] > a { display: inline-flex; align-items: center; padding: 0.05rem 0; + color: var(--text-primary); +} +li[class^='dir-list-'] > a:hover { + color: var(--text-link); } li[class^='dir-list-'] > a > svg { margin-right: 0.3rem;