File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ const pageMeta = {
181181 <input
182182 type =" color"
183183 id =" textColor"
184- value =" #ffffff "
184+ value =" #000000 "
185185 class =" metallic-input color-input"
186186 aria-label =" Text Color Picker"
187187 />
@@ -446,7 +446,7 @@ const pageMeta = {
446446 if (!preview || !quoteData || !quoteTextEl || !authorNameEl) return;
447447 quoteTextEl.textContent = quoteData.quote || "";
448448 authorNameEl.textContent = quoteData.author ? `- ${quoteData.author}` : "";
449- const selectedTextColor = controls.textColor?.value || "#ffffff ";
449+ const selectedTextColor = controls.textColor?.value || "#000000 ";
450450 quoteTextEl.style.color = selectedTextColor;
451451 authorNameEl.style.color = selectedTextColor;
452452 preview.style.fontFamily = controls.fontFamily?.value || "'Space Mono', monospace";
@@ -481,7 +481,7 @@ const pageMeta = {
481481 if (editWordCountEl) updateWordCountDisplay(editQuoteInput, editWordCountEl);
482482
483483 if (controls.bgColor) controls.bgColor.value = "#000000";
484- if (controls.textColor) controls.textColor.value = "#ffffff ";
484+ if (controls.textColor) controls.textColor.value = "#000000 ";
485485
486486 if (controls.fontFamily) controls.fontFamily.value = "'Space Mono', monospace";
487487 if (controls.fontSize) {
You can’t perform that action at this time.
0 commit comments