From 19a161d557e0a7d1dda8f3f3334656058dbb4258 Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Tue, 14 Jan 2025 07:16:36 -0600 Subject: [PATCH] Theming stuff --- components/Player/mini-player.tsx | 2 +- components/jellify.tsx | 4 ++-- components/theme.ts | 7 ++++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/components/Player/mini-player.tsx b/components/Player/mini-player.tsx index 75265bbc..81e5c27c 100644 --- a/components/Player/mini-player.tsx +++ b/components/Player/mini-player.tsx @@ -26,7 +26,7 @@ export function Miniplayer({ navigation }: { navigation : NavigationHelpers + { nowPlaying && ( + { server && library ? ( diff --git a/components/theme.ts b/components/theme.ts index 93a24137..c88ad24a 100644 --- a/components/theme.ts +++ b/components/theme.ts @@ -1,12 +1,13 @@ import { DarkTheme } from "@react-navigation/native"; import { Colors } from "../enums/colors"; -export const JellifyTheme = { - ...DarkTheme, +export const JellifyDarkTheme = { colors: { ...DarkTheme.colors, + card: Colors.Background, + border: Colors.Secondary, background: Colors.Background, primary: Colors.Primary, }, dark: true - }; \ No newline at end of file +}; \ No newline at end of file