Skip to content

Commit

Permalink
feat(web-admin): Change colour theme
Browse files Browse the repository at this point in the history
  • Loading branch information
alllenshibu committed Feb 29, 2024
1 parent c7ccc50 commit 28ca086
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web-admin/src/components/DataDisplay.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ThemeProvider, createTheme } from '@mui/material';
const MuiTheme = createTheme({
palette: {
primary: {
main: '#805ad5',
main: '#319795',
},
},
});
Expand Down
2 changes: 1 addition & 1 deletion apps/web-admin/src/pages/_app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ProtectedRoute } from '@/components/ProtectedRoute';

const theme = extendTheme(
withDefaultColorScheme({
colorScheme: 'purple',
colorScheme: 'teal',
}),
);

Expand Down

0 comments on commit 28ca086

Please sign in to comment.