mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2026-05-22 23:50:03 -05:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import { DarkTheme } from "@react-navigation/native";
|
|
import { Colors } from "../enums/colors";
|
|
|
|
export const JellifyTheme = {
|
|
...DarkTheme,
|
|
colors: {
|
|
...DarkTheme.colors,
|
|
primary: Colors.Primary,
|
|
},
|
|
}; |