adopt colors

This commit is contained in:
Tobias Diekershoff 2024-05-10 06:34:29 +02:00
parent aeb1382039
commit 38e082949d

View file

@ -754,16 +754,15 @@ figure.img-allocated-height img{
* Log levels colorized in the admin panel * Log levels colorized in the admin panel
**/ **/
.loglevel-debug { .loglevel-debug {
color: #00ff00; /* green */
} }
.loglevel-info { .loglevel-info {
color: #013220; /* dark green */ color: #0f009f; /* blue */
} }
.loglevel-notice { .loglevel-notice {
color: #ffa500; /* orange */ color: #007e01; /* green */
} }
.loglevel-warning { .loglevel-warning {
color: #ff8c00; /* dark orange */ color: #de9600; /* dark orange */
font-weight: bold; font-weight: bold;
} }
.loglevel-error { .loglevel-error {
@ -771,6 +770,6 @@ figure.img-allocated-height img{
font-weight: bold; font-weight: bold;
} }
.loglevel-critical { .loglevel-critical {
color: #8b0000; /* dark red */ color: #731289; /* purple */
font-weight: bold; font-weight: bold;
} }