From 504c661859e3583dceeb2b921243c5a4d0659db9 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sat, 11 Jan 2025 17:09:42 +1100 Subject: [PATCH] Fix native window control hover highlight --- src/views/templates/BaseViewTemplate.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/templates/BaseViewTemplate.vue b/src/views/templates/BaseViewTemplate.vue index e55a82ec8..c8b904a61 100644 --- a/src/views/templates/BaseViewTemplate.vue +++ b/src/views/templates/BaseViewTemplate.vue @@ -26,12 +26,12 @@ const props = withDefaults( ) const darkTheme = { - color: 'rgba(0, 0, 0, 0)', + color: 'rgba(23, 23, 23, 0)', symbolColor: '#d4d4d4' } const lightTheme = { - color: 'rgba(0, 0, 0, 0)', + color: 'rgba(212, 212, 212, 0)', symbolColor: '#171717' }