Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Soften dark mode #95

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
}
} else {
if ($darkTheme) {
styles.color = "hsl(0, 0%, 0%)";
styles.color = "hsl(0, 0%, 10%)";
styles.text = "hsl(0, 0%, 90%)";
styles.hoverColor = "hsl(0, 0%, 10%)";
styles.hoverText = "hsl(0, 0%, 100%)";
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/routes/(apps)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</script>

<ModalLib />
<div class="h-screen w-screen flex flex-col bg-zinc-50 dark:bg-black">
<div class="h-screen w-screen flex flex-col bg-zinc-50 dark:bg-zinc-900">
<AppHeader />
<slot />
</div>
2 changes: 1 addition & 1 deletion apps/web/src/routes/(apps)/recalplus/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@

<div
class="flex flex-col flex-1 w-full max-w-[1500px] mx-auto
dark:bg-black max-h-screen overflow-clip">
dark:bg-zinc-900 max-h-screen overflow-clip">
<div class="mx-2">
<Top />
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/routes/(apps)/reqtree/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</svelte:head>

<div
class="flex-1 w-full max-w-[1500px] mx-auto dark:bg-black dark:text-white max-h-screen overflow-clip">
class="flex-1 w-full max-w-[1500px] mx-auto dark:bg-zinc-900 dark:text-white max-h-screen overflow-clip">
<!-- your markup goes here -->
<h1>ReqTree</h1>
</div>
Expand Down
Loading