mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Change to dark theme
This commit is contained in:
parent
6a21cb70cf
commit
c71c04f7dd
2 changed files with 4 additions and 4 deletions
|
@ -3,14 +3,14 @@ import React from 'react'
|
||||||
import { Admin, Resource } from 'react-admin'
|
import { Admin, Resource } from 'react-admin'
|
||||||
import dataProvider from './dataProvider'
|
import dataProvider from './dataProvider'
|
||||||
import authProvider from './authProvider'
|
import authProvider from './authProvider'
|
||||||
import { Login, Layout, LightTheme } from './layout'
|
import { Login, Layout, DarkTheme } from './layout'
|
||||||
import user from './user'
|
import user from './user'
|
||||||
import song from './song'
|
import song from './song'
|
||||||
import album from './album'
|
import album from './album'
|
||||||
import artist from './artist'
|
import artist from './artist'
|
||||||
import { createMuiTheme } from '@material-ui/core/styles'
|
import { createMuiTheme } from '@material-ui/core/styles'
|
||||||
|
|
||||||
const theme = createMuiTheme(LightTheme)
|
const theme = createMuiTheme(DarkTheme)
|
||||||
|
|
||||||
const App = () => (
|
const App = () => (
|
||||||
<Admin
|
<Admin
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
// import purple from '@material-ui/core/colors/purple'
|
import blue from '@material-ui/core/colors/blue'
|
||||||
|
|
||||||
export const DarkTheme = {
|
export const DarkTheme = {
|
||||||
palette: {
|
palette: {
|
||||||
// secondary: purple,
|
secondary: blue,
|
||||||
type: 'dark'
|
type: 'dark'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue