From 53ceb85731a4bc4f9f85a2a53217ecdd93f248f3 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Thu, 18 Jun 2026 13:17:08 +0200 Subject: [PATCH] fix: wlogout fully fixed --- config/matugen/templates/wlogout/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/matugen/templates/wlogout/style.css b/config/matugen/templates/wlogout/style.css index 467c361..7410080 100644 --- a/config/matugen/templates/wlogout/style.css +++ b/config/matugen/templates/wlogout/style.css @@ -7,7 +7,7 @@ window { font-family: monospace; font-size: 14pt; color: {{colors.on_background.default.hex}}; /* text */ - background-color: {{colors.background.default.hex}}60; + background-color: rgba({{colors.background.default.red}}, {{colors.background.default.green}}, {{colors.background.default.blue}}, 0.3); } button { @@ -23,10 +23,11 @@ button { button:hover { background-color: {{colors.primary.default.hex}}; + color: {{colors.on_primary.default.hex}}; } button:focus { - background-color: {{colors.primary.default.hex}}80; + background-color: rgba({{colors.primary.default.red}}, {{colors.primary.default.green}}, {{colors.primary.default.blue}}, 0.8); color: {{colors.on_primary.default.hex}}; }