Merge remote changes, standardize button text color to --text-white CSS variable

Resolved merge conflicts by keeping the CSS variable approach (var(--text-white))
instead of hardcoded #fff for button text colors across all components.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-17 19:56:07 +02:00
3 changed files with 2 additions and 3 deletions

View File

@@ -44,7 +44,6 @@
--badge-blue-text: #63b3ed; --badge-blue-text: #63b3ed;
} }
--color-default: #000000;
/* Ensure all interactive elements show pointer cursor */ /* Ensure all interactive elements show pointer cursor */
button, button,
[role="button"], [role="button"],

View File

@@ -143,7 +143,7 @@ export default function MelodyDetail() {
<button <button
onClick={() => setShowDelete(true)} onClick={() => setShowDelete(true)}
className="px-4 py-2 text-sm rounded-md transition-colors" className="px-4 py-2 text-sm rounded-md transition-colors"
style={{ backgroundColor: "var(--danger)", color: "var(--text-white)" }} style={{ backgroundColor: "var(--danger-btn)", color: "var(--text-white)" }}
> >
Delete Delete
</button> </button>