style: New Theme Added - Spotify
Signed-off-by: k-kumar-01 <kushalkumargupta4@gmail.com>
This commit is contained in:
parent
18fda0d954
commit
72d6df15c6
2 changed files with 28 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import LightTheme from './light'
|
||||
import DarkTheme from './dark'
|
||||
import SpotifyTheme from './spotify'
|
||||
|
||||
export default { LightTheme, DarkTheme }
|
||||
export default { LightTheme, DarkTheme, SpotifyTheme }
|
||||
|
|
|
|||
26
ui/src/themes/spotify.js
Normal file
26
ui/src/themes/spotify.js
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import green from '@material-ui/core/colors/green'
|
||||
|
||||
export default {
|
||||
themeName: 'Spotify',
|
||||
palette: {
|
||||
primary: {
|
||||
light: green['300'],
|
||||
main: green['500'],
|
||||
},
|
||||
secondary: {
|
||||
main: green['900'],
|
||||
contrastText: '#fff',
|
||||
},
|
||||
type: 'dark',
|
||||
},
|
||||
overrides: {
|
||||
MuiFormGroup: {
|
||||
root: {
|
||||
color: 'white',
|
||||
},
|
||||
},
|
||||
},
|
||||
player: {
|
||||
theme: 'dark',
|
||||
},
|
||||
}
|
||||
Loading…
Reference in a new issue