diff --git a/components/settings/GlobalSettingsDialog.tsx b/components/settings/GlobalSettingsDialog.tsx
index b099970..714a40c 100644
--- a/components/settings/GlobalSettingsDialog.tsx
+++ b/components/settings/GlobalSettingsDialog.tsx
@@ -375,29 +375,6 @@ export function GlobalSettingsDialog({
- {/* Waveform Color */}
-
-
-
- onUISettingsChange({ waveformColor: e.target.value })}
- className="h-10 w-20 rounded border border-border cursor-pointer"
- />
- onUISettingsChange({ waveformColor: e.target.value })}
- className="flex-1 px-3 py-2 bg-background border border-border rounded text-sm font-mono"
- placeholder="#3b82f6"
- />
-
-
- Default color for new track waveforms.
-
-
-
{/* Font Size */}
diff --git a/lib/hooks/useSettings.ts b/lib/hooks/useSettings.ts
index e630620..77c75fc 100644
--- a/lib/hooks/useSettings.ts
+++ b/lib/hooks/useSettings.ts
@@ -10,7 +10,6 @@ export interface AudioSettings {
export interface UISettings {
theme: 'dark' | 'light' | 'auto';
- waveformColor: string;
fontSize: 'small' | 'medium' | 'large';
defaultTrackHeight: number; // 120-400px
}
@@ -45,7 +44,6 @@ const DEFAULT_SETTINGS: Settings = {
},
ui: {
theme: 'dark',
- waveformColor: '#3b82f6', // blue-500
fontSize: 'medium',
defaultTrackHeight: 400,
},