Skip to content

Commit

Permalink
Fix themes
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasnordquist committed Apr 17, 2019
1 parent fa38054 commit 9062129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ const baseTheme = {
},
}

const lightTheme = createMuiTheme({
const darkTheme = createMuiTheme({
...(baseTheme as any),
palette: {
type: 'dark',
},
})

const darkTheme = createMuiTheme({
const lightTheme = createMuiTheme({
...(baseTheme as any),
palette: {
type: 'light',
Expand Down

0 comments on commit 9062129

Please sign in to comment.