Files
App/components/theme.ts
Violet Caulfield 409519b90b theming stuff
2025-01-14 07:20:28 -06:00

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