From 1a3db575f02bf128bb9148d5026fe4a9321a24cd Mon Sep 17 00:00:00 2001 From: Jessie Keck Date: Mon, 30 Nov 2020 17:22:33 -0800 Subject: [PATCH] Add a cursed theme and a few task comments. --- src/index.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/index.js b/src/index.js index 941eebd..cdd2350 100644 --- a/src/index.js +++ b/src/index.js @@ -8,6 +8,32 @@ const config = { manifestId: 'https://purl.stanford.edu/fr426cg9537/iiif/manifest', } ], + themes: { + cursed:{ + palette: { + type: 'dark', + primary: { + main: '#ba55d3', + dark: '#44dff6', + }, + secondary: { + main: '#7fff00', + }, + shades: { + dark: '#7fffd4', + main: '#ffb6c1', + light: '#7b68ee', + }, + }, + typography:{ + fontFamily: ['Comic Sans MS', + 'Papyrus' + ], + }, + }, + // Task: Set the cursed theme as the selected theme + // Task: Override the colors in the dark and light themes + }, }; const plugins = [];