light mode colors

This commit is contained in:
Violet Caulfield
2025-01-25 11:39:33 -06:00
parent 0370b717a6
commit 89d7bb027d
2 changed files with 5 additions and 5 deletions

View File

@@ -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"

View File

@@ -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");