mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-21 18:49:49 -06:00
light mode colors
This commit is contained in:
@@ -19,7 +19,7 @@ export default function Icon({
|
||||
onPress?: () => void,
|
||||
small?: boolean,
|
||||
large?: boolean,
|
||||
color?: ColorTokens
|
||||
color?: string | undefined
|
||||
}) : React.JSX.Element {
|
||||
|
||||
const isDarkMode = useColorScheme() === "dark"
|
||||
|
||||
@@ -125,7 +125,7 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
|
||||
{/* Buttons for favorites, song menu go here */}
|
||||
|
||||
<Icon
|
||||
color={theme.white.val}
|
||||
color={theme.color.val}
|
||||
name="dots-horizontal-circle-outline"
|
||||
onPress={() => {
|
||||
navigation.navigate("Details", {
|
||||
@@ -230,14 +230,14 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
|
||||
|
||||
<XStack justifyContent="space-evenly" marginVertical={"$7"}>
|
||||
<Icon
|
||||
color={theme.white.val}
|
||||
color={theme.color.val}
|
||||
name="speaker-multiple"
|
||||
/>
|
||||
|
||||
<Spacer />
|
||||
|
||||
<Icon
|
||||
color={theme.white.val}
|
||||
color={theme.color.val}
|
||||
name="arrow-down-drop-circle"
|
||||
onPress={() => {
|
||||
navigation.goBack();
|
||||
@@ -248,7 +248,7 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
|
||||
|
||||
|
||||
<Icon
|
||||
color={theme.white.val}
|
||||
color={theme.color.val}
|
||||
name="playlist-music"
|
||||
onPress={() => {
|
||||
navigation.navigate("Queue");
|
||||
|
||||
Reference in New Issue
Block a user