mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-20 17:59:48 -06:00
21 lines
473 B
TypeScript
21 lines
473 B
TypeScript
import { DarkTheme, DefaultTheme } from "@react-navigation/native";
|
|
import { Colors } from "../enums/colors";
|
|
|
|
export const JellifyDarkTheme = {
|
|
colors: {
|
|
...DarkTheme.colors,
|
|
card: Colors.Background,
|
|
border: Colors.Secondary,
|
|
background: Colors.Background,
|
|
primary: Colors.Primary,
|
|
},
|
|
dark: true
|
|
};
|
|
|
|
export const JellifyLightTheme = {
|
|
...DefaultTheme,
|
|
colors: {
|
|
...DefaultTheme.colors,
|
|
primary: Colors.Primary
|
|
}
|
|
}; |