fix: increase border and background opacity for better visibility

Increased opacity for both TrackControls and MasterControls:
- bg-muted/10 → bg-muted/20 (background)
- border-accent/30 → border-accent/50 (border)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-19 01:07:52 +01:00
parent d34611ef10
commit 5c85914974
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ export function MasterControls({
}: MasterControlsProps) {
return (
<div className={cn(
'flex flex-col items-center gap-3 px-4 py-3 bg-muted/10 border-2 border-accent/30 rounded-lg',
'flex flex-col items-center gap-3 px-4 py-3 bg-muted/20 border-2 border-accent/50 rounded-lg',
className
)}>
{/* Master Label */}

View File

@@ -57,7 +57,7 @@ export function TrackControls({
}: TrackControlsProps) {
return (
<div className={cn(
'flex flex-col items-center justify-between h-full px-3 py-2 bg-muted/10 border-2 border-accent/30 rounded-lg',
'flex flex-col items-center justify-between h-full px-3 py-2 bg-muted/20 border-2 border-accent/50 rounded-lg',
className
)}>
{/* Pan Control - Top */}