style: New Theme Added - Spotify

Signed-off-by: k-kumar-01 <kushalkumargupta4@gmail.com>
This commit is contained in:
k-kumar-01 2021-03-13 15:18:23 +05:30 committed by Deluan Quintão
parent 18fda0d954
commit 72d6df15c6
2 changed files with 28 additions and 1 deletions
ui/src/themes

@ -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

@ -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',
},
}