From d0702b767564f7d965fcbb172b27da85760a83e5 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Tue, 3 Jan 2023 11:31:25 +1300 Subject: [PATCH] Reduce redundancy of labels for theme setting --- options.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/options.ts b/options.ts index baec9d4..9dc8c50 100644 --- a/options.ts +++ b/options.ts @@ -1,9 +1,9 @@ import {darkColors, lightColors} from './colors' export const themeOptions = [ - {label: 'Follow system theme', value: 'system'}, - {label: 'Dark theme', value: 'dark'}, - {label: 'Light theme', value: 'light'}, + {label: 'System', value: 'system'}, + {label: 'Dark', value: 'dark'}, + {label: 'Light', value: 'light'}, ] export const lightOptions = lightColors.map(color => ({