8000 refactor(site): verify external auth before display ws form by BrunoQuaresma · Pull Request #11777 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

refactor(site): verify external auth before display ws form #11777

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

Merged
merged 7 commits into from
Jan 24, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Improve color contrast
  • Loading branch information
BrunoQuaresma committed Jan 24, 2024
commit 1aa34e4b1516d0b9465d6517d9567c55a2083abc
6 changes: 3 additions & 3 deletions site/src/theme/dark/mui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ const muiTheme = createTheme({
palette: {
mode: "dark",
primary: {
main: tw.sky[600],
contrastText: tw.sky[50],
main: tw.sky[500],
contrastText: tw.white,
light: tw.sky[400],
dark: tw.sky[500],
dark: tw.sky[600],
},
secondary: {
main: tw.zinc[500],
Expand Down
0