adjust colors to movie-web

This commit is contained in:
Jorrin
2024-03-08 21:53:03 +01:00
parent 7e035e823a
commit ad2c84950a
29 changed files with 1537 additions and 167 deletions

View File

@@ -2,7 +2,7 @@ import { Pressable, ScrollView, View } from "react-native";
import Modal from "react-native-modal";
import { MaterialCommunityIcons } from "@expo/vector-icons";
import colors from "@movie-web/tailwind-config/colors";
import { defaultTheme } from "@movie-web/tailwind-config/themes";
import { usePlaybackSpeed } from "~/hooks/player/usePlaybackSpeed";
import { useBoolean } from "~/hooks/useBoolean";
@@ -27,7 +27,7 @@ export const PlaybackSpeedSelector = () => {
<MaterialCommunityIcons
name="speedometer"
size={24}
color={colors.primary[300]}
color={defaultTheme.extend.colors.buttons.primary}
/>
}
/>
@@ -59,7 +59,7 @@ export const PlaybackSpeedSelector = () => {
<MaterialCommunityIcons
name="check-circle"
size={24}
color={colors.primary[300]}
color={defaultTheme.extend.colors.buttons.primary}
/>
)}
</Pressable>