From c6d9cb0455038b8fa43b17dca80e23530552d02f Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 30 Oct 2020 23:45:37 -0600 Subject: [PATCH] Add the high contrast theme to the selector --- src/components/modals/ThemeModal.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/modals/ThemeModal.vue b/src/components/modals/ThemeModal.vue index 60cf282..0d35cdf 100644 --- a/src/components/modals/ThemeModal.vue +++ b/src/components/modals/ThemeModal.vue @@ -57,11 +57,17 @@ export default { { name: `Halloween`, filename: `halloween`, - description: `This exlusive theme only shows up around Halloween, make sure to use it while you can!`, + description: `This elusive theme only shows up around Halloween, make sure to use it while you can!`, show() { let date = new Date(); return date.getMonth() == 9; }, + }, + { + name: `High Contrast (Dark)`, + filename: `dark-high-contrast`, + description: `This theme is designed to be as high contrast as possible for those who need it.`, + show() { return true }, } ] }},