feat: add visual effects and enhance home screen functionality

- Add configurable shimmer and scanline visual effects with toggle settings
- Introduce starred albums and tracks sections to home screen
- Add flashback feature for album recommendations by decades
- Enhance home screen with increased item limits (30)
- Update default color scheme to orange-based theme
- Implement Backspace/Delete key functionality for removing songs from queue in fullscreen mode
This commit is contained in:
Ante Budimir 2025-11-16 15:54:47 +02:00
parent 228fc8e82b
commit bf5e7bc774
17 changed files with 533 additions and 144 deletions

View file

@ -1,12 +1,12 @@
.container {
width: 100vw;
height: 100%;
border-top: 2px solid var(--theme-orange-transparent-40);
background: linear-gradient(
180deg,
var(--theme-colors-background) 0%,
rgba(2, 26, 26, 0.95) 100%
rgb(2 26 26 / 95%) 100%
);
border-top: 2px solid var(--theme-orange-transparent-40);
box-shadow: 0 -4px 12px var(--theme-orange-transparent-15);
}