Skip to content
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
1 change: 1 addition & 0 deletions apps/desktop/electron/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ function createWindow() {

win = new BrowserWindow({
autoHideMenuBar: true,
backgroundColor: "#0a0a0a",
icon: getAppIconPath(),
titleBarStyle: "hidden",
titleBarOverlay: {
Expand Down
4 changes: 2 additions & 2 deletions apps/web/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html lang="en">
<html lang="en" class="dark" style="background-color: #0a0a0a">
Comment thread
johannesschiessl marked this conversation as resolved.
<head>
<meta charset="UTF-8" />
<meta
Expand All @@ -23,7 +23,7 @@
<link rel="icon" href="./icon.svg" type="image/svg+xml" />
<title>Showtime</title>
</head>
<body>
<body style="margin: 0; background-color: #0a0a0a">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/TitleBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function TitleBar({
: undefined
}
className={cn(
"title-bar-height title-bar-padding fixed inset-x-0 top-0 z-10 flex min-w-0 select-none items-center bg-[#0a0a0a] px-2 pb-0 sm:px-3",
"title-bar-height title-bar-padding fixed inset-x-0 top-0 z-10 flex min-w-0 select-none items-center bg-background px-2 pb-0 sm:px-3",
desktopHost && "drag-region",
stack === "below-content" && "z-0",
stack === "above-content" && "z-30",
Expand Down
4 changes: 1 addition & 3 deletions apps/web/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ if (import.meta.hot) import.meta.hot.dispose(uninstallMobileViewport);
restorePwaConnectionHandoff();
void registerServiceWorker();
const pairing = await capturePairingFragment();
document.documentElement.classList.add("dark");

ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
{pairing.status === "failed" ? (
Expand Down Expand Up @@ -58,7 +56,7 @@ function SynchronizedApp() {
)}
{!revoked && (
<div
className="app-height bg-[#0a0a0a]"
className="app-height bg-background"
aria-hidden={expectsConnection && connection.status !== "connected"}
inert={expectsConnection && connection.status !== "connected" ? true : undefined}
>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
overscroll-behavior: none;
}
body {
@apply m-0 h-full min-w-80 overflow-hidden bg-[#0a0a0a] text-[#fafafa];
@apply m-0 h-full min-w-80 overflow-hidden bg-background text-foreground;
position: relative;
overscroll-behavior: none;
-webkit-tap-highlight-color: transparent;
Expand Down
Loading