webapp: apply solarized-dark colors to web console

This commit is contained in:
Bernhard Kirchen
2025-06-08 20:51:42 +02:00
committed by Thomas Basler
parent 99e6930108
commit c5d90d0c53

View File

@@ -325,8 +325,8 @@ export default defineComponent({
overflow-y: auto; overflow-y: auto;
overflow-x: auto; overflow-x: auto;
padding: 8px; padding: 8px;
background: #111; background: #002b36;
border: 1px solid #333; border: 1px solid #073642;
border-radius: 6px; border-radius: 6px;
font-family: courier new; font-family: courier new;
font-size: 0.875em; font-size: 0.875em;
@@ -338,31 +338,31 @@ export default defineComponent({
} }
.timestamp { .timestamp {
color: #888; color: #586e75;
margin-right: 8px; margin-right: 8px;
} }
.error { .error {
color: #ff5555; color: #dc322f;
} }
.warning { .warning {
color: #ffcc00; color: #b58900;
} }
.info { .info {
color: #a8ff60; color: #859900;
} }
.debug { .debug {
color: #57c7ff; color: #268bd2;
} }
.verbose { .verbose {
color: #bbbbbb; color: #839496;
} }
.default { .default {
color: #ddd; color: #586e75;
} }
</style> </style>