Skip to content

Commit

Permalink
Update colors
Browse files Browse the repository at this point in the history
  • Loading branch information
mellevanderlinde committed Dec 30, 2024
1 parent f24cf74 commit 8e6c0be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/website/app/components/mdx.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function Code({ children, ...props }): ReactNode {

function Callout(props): ReactNode {
return (
<div className="px-4 py-3 rounded p-1 text-sm flex items-center text-neutral-900 dark:text-neutral-100 mb-8 bg-white dark:bg-black text-black border border-neutral-200 dark:border-[#2e2e2e]">
<div className="px-4 py-3 rounded p-1 text-sm flex items-center text-neutral-900 dark:text-neutral-100 mb-8 bg-white dark:bg-[#0f1113] text-black border border-neutral-200 dark:border-neutral-700">
<div className="flex items-center w-4 mr-4">{props.emoji}</div>
<div className="w-full callout leading-relaxed">{props.children}</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions apps/website/app/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}
html {
color-scheme: dark;
background-color: black;
background-color: #0f1113;
}
}

Expand Down Expand Up @@ -76,7 +76,7 @@ html {
}

.prose pre {
@apply bg-white dark:bg-black overflow-x-auto text-black dark:text-white border border-neutral-200 dark:border-[#2e2e2e];
@apply bg-white dark:bg-[#0f1113] overflow-x-auto text-black dark:text-white border border-neutral-200 dark:border-neutral-700;
}

.prose code {
Expand Down

0 comments on commit 8e6c0be

Please sign in to comment.