From 7a07553a5d57978ecf0d5ac046c28b5c2751b55f Mon Sep 17 00:00:00 2001 From: kramo <93832451+kra-mo@users.noreply.github.com> Date: Wed, 28 Jun 2023 11:26:26 +0200 Subject: [PATCH] Fixed colors for themeing --- data/gtk/style-dark.css | 4 ++-- data/gtk/style.css | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/data/gtk/style-dark.css b/data/gtk/style-dark.css index 375f507..1599f68 100644 --- a/data/gtk/style-dark.css +++ b/data/gtk/style-dark.css @@ -6,6 +6,6 @@ } #details_view_play_button { - color: @dark_5; - background-color: @light_1; + color: rgba(0, 0, 0, .8); + background-color: white; } \ No newline at end of file diff --git a/data/gtk/style.css b/data/gtk/style.css index 72c1868..068c539 100644 --- a/data/gtk/style.css +++ b/data/gtk/style.css @@ -6,7 +6,6 @@ } #details_view_play_button { - color: @light_1; - background-color: @dark_5; - opacity: 0.8; + color: white; + background-color: rgba(0, 0, 0, .8); } \ No newline at end of file