mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-27 05:59:36 -05:00
13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
import { DarkTheme } 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
|
|
}; |