Files
App/components/theme.ts
T
Violet Caulfield 19a161d557 Theming stuff
2025-01-14 07:16:36 -06:00

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
};