color palette rework #2

This commit is contained in:
2026-03-09 16:53:55 +01:00
parent 0c2157bd0a
commit 4e8a50374e
11 changed files with 52 additions and 40 deletions

View File

@@ -54,8 +54,8 @@
}
.chord {
color: #00b;
text-shadow: 0 0 1px #00b;
color: var(--primary-active);
text-shadow: 0 0 1px var(--primary-hover);
}
.offset {
@@ -68,14 +68,14 @@
}
.error {
color: red;
color: var(--danger);
font-size: 1.2em;
font-weight: bold;
}
.comment {
color: #00b;
border-left: 2px solid #00b;
color: var(--primary-active);
border-left: 2px solid var(--primary-hover);
padding-left: 6px;
font-style: italic;
}