From 9f45eeb3785eb27abf8b1a38c171d48cb4ca7aba Mon Sep 17 00:00:00 2001 From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch> Date: Fri, 24 Nov 2023 16:39:32 +0100 Subject: [PATCH] simplify phase colors --- config/config_defaults.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/config_defaults.php b/config/config_defaults.php index 454c30af..74274c75 100644 --- a/config/config_defaults.php +++ b/config/config_defaults.php @@ -19,21 +19,21 @@ return [ "preview" => [ 'css' => [ 'bgdark' => 'background:#ccc;', - 'bglight' => 'background:#eee; color:#333; background:rgba(210,210,210,0.4); ', + 'bglight' => 'background:#eee; color:#333;', 'bgbutton' => 'background:#888; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', ], ], "stage" => [ 'css' => [ - 'bgdark' => 'background:#8ad; ', - 'bglight' => 'background:#f0f4f8; color:#333; background:rgba(200,200,220,0.5); ', + 'bgdark' => 'background:#c0c8e0; ', + 'bglight' => 'background:#e0e8f0; color:#333;', 'bgbutton' => 'background:#78a; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', ], ], "live" => [ 'css' => [ - 'bgdark' => 'background:#8c9; ', - 'bglight' => 'background:#f4f8f0; color:#333; background:rgba(190,220,190,0.5); ', + 'bgdark' => 'background:#c0e0c8;', + 'bglight' => 'background:#e0f0e8; color:#333;', 'bgbutton' => 'background:#7a8; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', ], // prevent immediate installation after build or accept -- GitLab