Skip to content

Commit f42eff0

Browse files
author
Ben Potter
committed
feat: Add purple theme to dashboard
Replace sky blue colors with purple in the dark theme: - Primary colors: sky -> purple (400, 500, 600) - Background: zinc -> purple (900, 950) for immersive purple experience - Divider: zinc -> purple (700) for consistent theming This creates a bold purple dashboard theme that maintains good contrast and readability while providing a distinctive visual experience.
1 parent 070178c commit f42eff0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

site/src/theme/dark/mui.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ const muiTheme = createTheme({
88
palette: {
99
mode: "dark",
1010
primary: {
11-
main: tw.sky[500],
11+
main: tw.purple[500],
1212
contrastText: tw.white,
13-
light: tw.sky[400],
14-
dark: tw.sky[600],
13+
light: tw.purple[400],
14+
dark: tw.purple[600],
1515
},
1616
secondary: {
1717
main: tw.zinc[500],
1818
contrastText: tw.zinc[200],
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],
2727
secondary: tw.zinc[400],
2828
disabled: tw.zinc[500],
2929
},
30-
divider: tw.zinc[700],
30+
divider: tw.purple[700],
3131
warning: {
3232
light: tw.amber[500],
3333
main: tw.amber[800],

0 commit comments

Comments
 (0)