From 997efdfae881eb94fd0044b0a475b291690943ba Mon Sep 17 00:00:00 2001 From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch> Date: Fri, 24 Nov 2023 13:04:22 +0100 Subject: [PATCH] light phase colors --- config/config_defaults.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/config/config_defaults.php b/config/config_defaults.php index 3c516807..67793292 100644 --- a/config/config_defaults.php +++ b/config/config_defaults.php @@ -16,6 +16,32 @@ return [ // ---------------------------------------------------------------------- 'phases' => [ + "preview" => [ + 'css' => [ + 'bgdark' => 'background:#ccc;', + 'bglight' => 'background:#eee; color:#333; background:rgba(210,210,210,0.4); ', + 'bgbutton' => 'background:#888; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', + ], + ], + "stage" => [ + 'css' => [ + 'bgdark' => 'background:#9ac; ', + 'bglight' => 'background:#f0f4f8; color:#333; background:rgba(200,200,220,0.5); ', + 'bgbutton' => 'background:#78a; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', + ], + ], + "live" => [ + 'css' => [ + 'bgdark' => 'background:#8b9; ', + 'bglight' => 'background:#f4f8f0; color:#333; background:rgba(190,220,190,0.5); ', + 'bgbutton' => 'background:#7a8; color:#fcfcfc; border: 1px solid rgba(0,0,0,0.15);', + ], + // prevent immediate installation after build or accept + "deploytimes" => ['/(Mon|Tue|Wed|Thu)\ 14\:/'], + ], + ], + /* + 'phases_bak' => [ "preview" => [ 'css' => [ 'bgdark' => 'background:#445; color:#f8f8f8;', @@ -40,6 +66,7 @@ return [ "deploytimes" => ['/(Mon|Tue|Wed|Thu)\ 14\:/'], ], ], + */ 'auth' => [ // force using a given user ... for development only -- GitLab