diff --git a/src/components/Colors.tsx b/src/components/Colors.tsx
index f7b559a..2b004c9 100644
--- a/src/components/Colors.tsx
+++ b/src/components/Colors.tsx
@@ -63,7 +63,7 @@ function generateStyles(scheme: ColorSchemeName, highContrast: boolean) {
color: scheme === 'dark' ? '#fff' : '#000',
},
trackBackground: {
- backgroundColor: scheme === 'dark' ? '#111' : '#fff',
+ backgroundColor: scheme === 'dark' ? '#161616' : '#fff',
},
stackHeader: {
color: scheme === 'dark' ? 'white' : 'black'
diff --git a/src/screens/modals/Lyrics/index.tsx b/src/screens/modals/Lyrics/index.tsx
index 32181e2..53b3998 100644
--- a/src/screens/modals/Lyrics/index.tsx
+++ b/src/screens/modals/Lyrics/index.tsx
@@ -4,7 +4,6 @@ import { GestureHandlerRootView } from 'react-native-gesture-handler';
import { Platform } from 'react-native';
import BackButton from '../Player/components/Backbutton';
import { ColoredBlurView } from '@/components/Colors';
-import NowPlaying from '@/screens/Music/overlays/NowPlaying';
export default function Lyrics() {
return (
@@ -12,7 +11,6 @@ export default function Lyrics() {
{Platform.OS === 'android' && ()}
-
);
diff --git a/src/screens/modals/Player/components/LyricsPreview.tsx b/src/screens/modals/Player/components/LyricsPreview.tsx
index 938e12c..8598a6d 100644
--- a/src/screens/modals/Player/components/LyricsPreview.tsx
+++ b/src/screens/modals/Player/components/LyricsPreview.tsx
@@ -11,7 +11,7 @@ import { LayoutChangeEvent } from 'react-native';
import { Defs, LinearGradient, Rect, Stop, Svg } from 'react-native-svg';
const Container = styled.TouchableOpacity`
- border-radius: 8px;
+ border-radius: 12px;
margin-top: 24px;
margin-left: -16px;
margin-right: -16px;
@@ -67,10 +67,10 @@ function InnerLyricsPreview() {
onPress={handleShowLyrics}
onLayout={handleLayoutChange}
>
-
+
-
-
@@ -88,7 +88,7 @@ function InnerLyricsPreview() {