Add Extra Dark theme (#955)

* added new theme - night

* removed a unused field

* fixed a typo from previous change

* night theme in login window

* changed name

changed the theme name from "Night" to "Extra Dark"

* changed the theme name

* Update index.js

* Rename night.js to extradark.js

* trying something

* formatted

the JS build was failing because I haven't formatted the index.js file with prettier. I got to know about this now.
I think now it will be resolved.
This commit is contained in:
sobhanbera
2021-04-05 06:55:54 +05:30
committed by GitHub
parent a4d07734cd
commit ca51372d8d
2 changed files with 43 additions and 1 deletions
+8 -1
View File
@@ -1,6 +1,13 @@
import LightTheme from './light'
import DarkTheme from './dark'
import ExtraDarkTheme from './extradark'
import GreenTheme from './green'
import SpotifyTheme from './spotify'
export default { LightTheme, DarkTheme, GreenTheme, SpotifyTheme }
export default {
LightTheme,
DarkTheme,
ExtraDarkTheme,
GreenTheme,
SpotifyTheme,
}