style: alle font-family auf Poppins umgestellt
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -326,7 +326,7 @@ function makeSwatch(hsl) {
|
||||
swatch.title = hex;
|
||||
|
||||
const label = document.createElement('span');
|
||||
label.style.cssText = 'font-size:0.75rem;font-family:monospace';
|
||||
label.style.cssText = 'font-size:0.75rem;font-family:Poppins,sans-serif';
|
||||
label.textContent = hex;
|
||||
|
||||
wrapper.appendChild(swatch);
|
||||
|
||||
@@ -141,7 +141,7 @@ function showVorschlag(farbenVorschlag) {
|
||||
const swatch = document.createElement('div');
|
||||
swatch.style.cssText = 'width:44px;height:44px;border-radius:6px;border:1px solid #ddd;background:' + hex;
|
||||
const label = document.createElement('span');
|
||||
label.style.cssText = 'font-size:0.7rem;font-family:monospace;color:#666';
|
||||
label.style.cssText = 'font-size:0.7rem;font-family:Poppins,sans-serif;color:#666';
|
||||
label.textContent = hex;
|
||||
cell.appendChild(swatch);
|
||||
cell.appendChild(label);
|
||||
@@ -170,7 +170,7 @@ function renderFarbenPreview() {
|
||||
swatch.title = hex;
|
||||
|
||||
const label = document.createElement('span');
|
||||
label.style.cssText = 'font-size:0.7rem;font-family:monospace;color:#666';
|
||||
label.style.cssText = 'font-size:0.7rem;font-family:Poppins,sans-serif;color:#666';
|
||||
label.textContent = hex;
|
||||
|
||||
const removeBtn = document.createElement('button');
|
||||
|
||||
Reference in New Issue
Block a user