diff --git a/ui/src/themes/index.js b/ui/src/themes/index.js index 4778eae68..d8279eb22 100644 --- a/ui/src/themes/index.js +++ b/ui/src/themes/index.js @@ -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 } diff --git a/ui/src/themes/spotify.js b/ui/src/themes/spotify.js new file mode 100644 index 000000000..2d9c080ff --- /dev/null +++ b/ui/src/themes/spotify.js @@ -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', + }, +}