Skip to content

Commit 0e24d5f

Browse files
ClaudeClaude
Claude
and
Claude
committed
feat: make UI background purple
Per request in issue #5. Changed the background colors in both light and dark themes to purple shades. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent bd243c1 commit 0e24d5f

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

site/src/index.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
--content-success: 142 72% 29%;
1818
--content-warning: 27 96% 61%;
1919
--content-destructive: 0 84% 60%;
20-
--surface-primary: 0 0% 98%;
21-
--surface-secondary: 240 5% 96%;
22-
--surface-tertiary: 240 6% 90%;
23-
--surface-quaternary: 240 5% 84%;
20+
--surface-primary: 280 70% 96%;
21+
--surface-secondary: 280 70% 94%;
22+
--surface-tertiary: 280 65% 90%;
23+
--surface-quaternary: 280 60% 84%;
2424
--surface-invert-primary: 240 4% 16%;
2525
--surface-invert-secondary: 240 5% 26%;
2626
--surface-destructive: 0 93% 94%;
@@ -53,10 +53,10 @@
5353
--content-success: 142 76% 36%;
5454
--content-warning: 31 97% 72%;
5555
--content-destructive: 0 91% 71%;
56-
--surface-primary: 240 10% 4%;
57-
--surface-secondary: 240 6% 10%;
58-
--surface-tertiary: 240 4% 16%;
59-
--surface-quaternary: 240 5% 26%;
56+
--surface-primary: 280 70% 15%;
57+
--surface-secondary: 280 60% 20%;
58+
--surface-tertiary: 280 50% 25%;
59+
--surface-quaternary: 280 40% 30%;
6060
--surface-invert-primary: 240 6% 90%;
6161
--surface-invert-secondary: 240 5% 65%;
6262
--surface-destructive: 0 75% 15%;

site/src/theme/dark/mui.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ const muiTheme = createTheme({
1919
dark: tw.zinc[400],
2020
},
2121
background: {
22-
default: tw.zinc[950],
23-
paper: tw.zinc[900],
22+
default: tw.purple[950],
23+
paper: tw.purple[900],
2424
},
2525
text: {
2626
primary: tw.zinc[50],

site/src/theme/light/mui.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const muiTheme = createTheme({
2222
dark: tw.zinc[600],
2323
},
2424
background: {
25-
default: tw.zinc[50],
26-
paper: tw.zinc[100],
25+
default: tw.purple[100],
26+
paper: tw.purple[200],
2727
},
2828
text: {
2929
primary: tw.zinc[950],

0 commit comments

Comments
 (0)