From 38e082949d947f240844588ca956cf2783f2cbb7 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 10 May 2024 06:34:29 +0200 Subject: [PATCH] adopt colors --- view/global.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/view/global.css b/view/global.css index b17de54b34..74ef4631de 100644 --- a/view/global.css +++ b/view/global.css @@ -754,16 +754,15 @@ figure.img-allocated-height img{ * Log levels colorized in the admin panel **/ .loglevel-debug { - color: #00ff00; /* green */ } .loglevel-info { - color: #013220; /* dark green */ + color: #0f009f; /* blue */ } .loglevel-notice { - color: #ffa500; /* orange */ + color: #007e01; /* green */ } .loglevel-warning { - color: #ff8c00; /* dark orange */ + color: #de9600; /* dark orange */ font-weight: bold; } .loglevel-error { @@ -771,6 +770,6 @@ figure.img-allocated-height img{ font-weight: bold; } .loglevel-critical { - color: #8b0000; /* dark red */ + color: #731289; /* purple */ font-weight: bold; }