feat: Eingabe-Tab mit bidirektionaler Farbumrechnung

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ferdinand
2026-04-01 16:19:47 +02:00
parent 8aacaa1d8f
commit cf9cdb2f6e
3 changed files with 102 additions and 2 deletions

View File

@@ -21,3 +21,10 @@ document.querySelectorAll('.tab-btn').forEach(btn => {
if (section) section.classList.add('active');
});
});
import { initEingabe } from './eingabe.js';
function addFavorit(hsl) { console.log('addFavorit', hsl); }
function addColorToSchema(hsl) { console.log('addColorToSchema', hsl); }
initEingabe(addFavorit, addColorToSchema);