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
2 changes: 1 addition & 1 deletion web/app/components/Sidebar/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function Login() {
<Text size="xs" ff="monospace" c="dimmed">
logged in as{" "}
<Text span c="white" inherit>
{scTokenContent?.login || "user"}
{scTokenContent?.Login || "user"}
</Text>
</Text>
</Group>
Expand Down
3 changes: 1 addition & 2 deletions web/app/components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function Sidebar() {
letterSpacing: "0.1em",
}}
>
{">"} gempbot
gempbot
</Text>
<Text size="xs" c="dimmed" ff="monospace" mt={2}>
v2.0 {"// twitch bot"}
Expand Down Expand Up @@ -110,7 +110,6 @@ export function Sidebar() {
to={link.href}
label={
<Text size="xs" ff="monospace">
{isActive ? "> " : " "}
{link.label}
</Text>
}
Expand Down
4 changes: 2 additions & 2 deletions web/app/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

:root {
/* Terminal color palette */
--terminal-green: #00ff99;
--terminal-green-dim: #00cc7a;
--terminal-green: #28c88c;
--terminal-green-dim: #20a070;
--terminal-blue: #339af0;
--terminal-red: #ff6b6b;
--terminal-yellow: #ffd43b;
Expand Down
22 changes: 11 additions & 11 deletions web/app/theme.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { createTheme, type MantineColorsTuple } from "@mantine/core";

// Terminal green - high contrast, technical feel
// Muted green - darker, more readable
const terminal: MantineColorsTuple = [
"#e6fff5",
"#ccffeb",
"#99ffd6",
"#66ffc2",
"#33ffad",
"#00ff99", // Primary terminal green
"#00e689",
"#00cc7a",
"#00b36b",
"#00995c",
"#d4f4e8",
"#a9e9d1",
"#7edeba",
"#53d3a3",
"#28c88c", // Primary muted green
"#20a070",
"#187854",
"#105038",
"#08281c",
"#000000",
];

// Steel gray - mechanical, industrial
Expand Down