From 688eaf026d9bbf0595c6a2ccddb19ced4e06172a Mon Sep 17 00:00:00 2001 From: Ken Meleta Date: Thu, 18 May 2023 08:48:17 -0600 Subject: [PATCH] Add default values for color scheme group --- config/settings_schema.json | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/config/settings_schema.json b/config/settings_schema.json index c20dc5966d2..729c9347ef3 100644 --- a/config/settings_schema.json +++ b/config/settings_schema.json @@ -43,7 +43,8 @@ { "type": "color", "id": "background", - "label": "t:settings_schema.colors.settings.background.label" + "label": "t:settings_schema.colors.settings.background.label", + "default": "#FFFFFF" }, { "type": "color_background", @@ -54,27 +55,32 @@ { "type": "color", "id": "text", - "label": "t:settings_schema.colors.settings.text.label" + "label": "t:settings_schema.colors.settings.text.label", + "default": "#121212" }, { "type": "color", "id": "button", - "label": "t:settings_schema.colors.settings.button_background.label" + "label": "t:settings_schema.colors.settings.button_background.label", + "default": "#121212" }, { "type": "color", "id": "button_label", - "label": "t:settings_schema.colors.settings.button_label.label" + "label": "t:settings_schema.colors.settings.button_label.label", + "default": "#FFFFFF" }, { "type": "color", "id": "secondary_button_label", - "label": "t:settings_schema.colors.settings.secondary_button_label.label" + "label": "t:settings_schema.colors.settings.secondary_button_label.label", + "default": "#121212" }, { "type": "color", "id": "shadow", - "label": "t:settings_schema.colors.settings.shadow.label" + "label": "t:settings_schema.colors.settings.shadow.label", + "default": "#121212" } ], "role": {