Skip to content

Commit

Permalink
feat: dark-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushShivhare79 committed Aug 21, 2024
1 parent adf841a commit 23e8eb9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions apps/web/components/NotionRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ export const NotionRenderer = ({ recordMap }: { recordMap: any }) => {
<style>
{`
.notion-app {
background: #111827;
}
background: #f4f4f5;
color: #000000
}
.dark-mode {
background: #111827;
color: #ffffff
}
.notion-title{
font-family: open-montserrat;
font-size: xxx-large;
Expand Down

0 comments on commit 23e8eb9

Please sign in to comment.