diff --git a/js/components/MainWindow/__snapshots__/index.test.js.snap b/js/components/MainWindow/__snapshots__/index.test.js.snap
index b0e1848b..52beba0c 100644
--- a/js/components/MainWindow/__snapshots__/index.test.js.snap
+++ b/js/components/MainWindow/__snapshots__/index.test.js.snap
@@ -2,7 +2,7 @@
exports[`MainWindow renders to snapshot 1`] = `
{
let store;
beforeEach(() => {
- store = getStore(media);
+ store = getStore(media, new Emitter());
+ store.dispatch({ type: SET_SKIN_DATA });
});
it("renders to snapshot", () => {
diff --git a/js/reducers/display.js b/js/reducers/display.js
index 019cd37e..dc3e9b6b 100644
--- a/js/reducers/display.js
+++ b/js/reducers/display.js
@@ -19,7 +19,32 @@ const defaultDisplayState = {
closed: false,
working: false,
skinImages: {},
- skinColors: null,
+ skinColors: [
+ "rgb(0,0,0)",
+ "rgb(24,33,41)",
+ "rgb(239,49,16)",
+ "rgb(206,41,16)",
+ "rgb(214,90,0)",
+ "rgb(214,102,0)",
+ "rgb(214,115,0)",
+ "rgb(198,123,8)",
+ "rgb(222,165,24)",
+ "rgb(214,181,33)",
+ "rgb(189,222,41)",
+ "rgb(148,222,33)",
+ "rgb(41,206,16)",
+ "rgb(50,190,16)",
+ "rgb(57,181,16)",
+ "rgb(49,156,8)",
+ "rgb(41,148,0)",
+ "rgb(24,132,8)",
+ "rgb(255,255,255)",
+ "rgb(214,214,222)",
+ "rgb(181,189,189)",
+ "rgb(160,170,175)",
+ "rgb(148,156,165)",
+ "rgb(150,150,150)"
+ ],
skinCursors: null,
skinPlaylistStyle: null,
skinRegion: {},