Skip to content

Commit

Permalink
chore: change nav theme hsl values
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya committed Oct 30, 2024
1 parent eaffc1b commit 0f752cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function RootLayout() {
return (
<SWRConfig value={swrConfiguration}>
<ThemeProvider value={isDarkColorScheme ? DARK_THEME : LIGHT_THEME}>
<StatusBar translucent style={isDarkColorScheme ? "light" : "dark"} />
<StatusBar style={isDarkColorScheme ? "light" : "dark"} />
<PolyfillCrypto />
<SafeAreaView className="w-full h-full bg-background">
<UserInactivityProvider>
Expand Down
4 changes: 2 additions & 2 deletions lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { Nip47Capability } from "@getalby/sdk/dist/NWCClient";

export const NAV_THEME = {
light: {
background: "hsl(210 20% 98%)", // background
background: "hsl(0 0% 100%)", // background
border: "hsl(240 5.9% 90%)", // border
card: "hsl(210 20% 98%)", // card
card: "hsl(0 0% 100%)", // card
notification: "hsl(0 84.2% 60.2%)", // destructive
primary: "hsl(240 5.9% 10%)", // primary
text: "hsl(240 10% 3.9%)", // foreground
Expand Down

0 comments on commit 0f752cc

Please sign in to comment.