Add light and dark theme option to commandline-lists

This commit is contained in:
Rustom Ichhaporia 2021-05-08 17:07:13 -05:00
parent 2ce37ce132
commit 74e26c7aa1

View file

@ -384,6 +384,20 @@ let commandsRandomTheme = {
UpdateConfig.setRandomTheme("fav");
},
},
{
id: "setRandomLight",
display: "light",
exec: () => {
UpdateConfig.setRandomTheme("light");
},
},
{
id: "setRandomDark",
display: "dark",
exec: () => {
UpdateConfig.setRandomTheme("dark");
},
},
],
};