Change to dark theme

This commit is contained in:
Deluan 2020-01-23 22:51:52 -05:00
parent 6a21cb70cf
commit c71c04f7dd
2 changed files with 4 additions and 4 deletions

View file

@ -3,14 +3,14 @@ import React from 'react'
import { Admin, Resource } from 'react-admin'
import dataProvider from './dataProvider'
import authProvider from './authProvider'
import { Login, Layout, LightTheme } from './layout'
import { Login, Layout, DarkTheme } from './layout'
import user from './user'
import song from './song'
import album from './album'
import artist from './artist'
import { createMuiTheme } from '@material-ui/core/styles'
const theme = createMuiTheme(LightTheme)
const theme = createMuiTheme(DarkTheme)
const App = () => (
<Admin

View file

@ -1,8 +1,8 @@
// import purple from '@material-ui/core/colors/purple'
import blue from '@material-ui/core/colors/blue'
export const DarkTheme = {
palette: {
// secondary: purple,
secondary: blue,
type: 'dark'
}
}