Init commit. Rewrite of old project. Not done

This commit is contained in:
2024-10-15 15:53:05 -05:00
parent 9f193bbc01
commit 5549cbbe10
38 changed files with 957 additions and 407 deletions

View File

@ -4,5 +4,5 @@
// to render different styles on the client and server, these aren't directly supported in React Native
// but can be achieved using a styling library like Nativewind.
export function useColorScheme() {
return 'light';
return 'dark';
}

View File

@ -11,7 +11,7 @@ export function useThemeColor(
props: { light?: string; dark?: string },
colorName: keyof typeof Colors.light & keyof typeof Colors.dark
) {
const theme = useColorScheme() ?? 'light';
const theme = useColorScheme() ?? 'dark';
const colorFromProps = props[theme];
if (colorFromProps) {