fix: bidirectional eingabe update, hexToHsl null check, import validation, harmony umlauts

This commit is contained in:
Ferdinand
2026-04-02 10:46:44 +02:00
parent ce6c3298b4
commit 184f3ec0c2
4 changed files with 11 additions and 3 deletions

View File

@@ -65,10 +65,10 @@ function render(onSaveFavorit, onSaveSchema) {
grid.textContent = '';
const h = getHarmonies(hsl);
grid.appendChild(renderHarmony('Komplementar', h.komplementaer, onSaveFavorit, onSaveSchema));
grid.appendChild(renderHarmony('Komplementär', h.komplementaer, onSaveFavorit, onSaveSchema));
grid.appendChild(renderHarmony('Analog', h.analog, onSaveFavorit, onSaveSchema));
grid.appendChild(renderHarmony('Triade', h.triade, onSaveFavorit, onSaveSchema));
grid.appendChild(renderHarmony('Split-Komplementar', h.splitKomplementaer, onSaveFavorit, onSaveSchema));
grid.appendChild(renderHarmony('Split-Komplementär', h.splitKomplementaer, onSaveFavorit, onSaveSchema));
}
export function initHarmonien(onSaveFavorit, onSaveSchema) {