Skip to content

Commit

Permalink
Define color scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcarpenter committed May 3, 2023
1 parent 04473de commit b48f4e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
font-family: "Inter", sans-serif;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
color-scheme: light;
/* note: must keep in sync with `theme-color` in `theme-effect.ts` */
@apply bg-[#fcfcfc];
}

:root.dark {
color-scheme: dark;
/* note: must keep in sync with `theme-color` in `theme-effect.ts` */
@apply bg-[#1C1C1C];
}
Expand Down

0 comments on commit b48f4e0

Please sign in to comment.