style: improve hint text readability on dark background

- Change hint-message color to light text
- Update kbd/code styling for dark background
This commit is contained in:
2025-12-30 19:59:11 +01:00
parent 0817d9dd13
commit 5940fb2e72

View File

@@ -414,15 +414,17 @@ code, kbd {
.hint-message { .hint-message {
font-size: 0.9rem; font-size: 0.9rem;
color: var(--text-color); color: var(--editor-text);
} }
.hint-message kbd, .hint-message kbd,
.hint-message code { .hint-message code {
background: var(--primary-bg-medium); background: rgba(255, 255, 255, 0.15);
color: #fff;
padding: 2px 6px; padding: 2px 6px;
border-radius: 3px; border-radius: 3px;
font-size: 0.8rem; font-size: 0.85rem;
font-family: var(--font-code);
} }
.hint-success { .hint-success {