From eb94c2e73c281bdc8d5630491267aeb86d2e85bd Mon Sep 17 00:00:00 2001 From: James Brumond Date: Fri, 13 Jan 2023 19:15:09 -0800 Subject: [PATCH] add accent colors to themes --- json-schema/color-theme/v1.json | 12 ++++++++++++ json-schema/color-theme/v1.yaml | 14 ++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/json-schema/color-theme/v1.json b/json-schema/color-theme/v1.json index e88dc3b..f1372af 100644 --- a/json-schema/color-theme/v1.json +++ b/json-schema/color-theme/v1.json @@ -156,6 +156,18 @@ "icon_warning_indicator": { "$ref": "#/definitions/css_color" }, + "accent_info": { + "$ref": "#/definitions/css_color" + }, + "accent_highlight": { + "$ref": "#/definitions/css_color" + }, + "accent_warning": { + "$ref": "#/definitions/css_color" + }, + "accent_problem": { + "$ref": "#/definitions/css_color" + }, "chart_axis": { "$ref": "#/definitions/css_color" }, diff --git a/json-schema/color-theme/v1.yaml b/json-schema/color-theme/v1.yaml index 4023ae4..d21236e 100644 --- a/json-schema/color-theme/v1.yaml +++ b/json-schema/color-theme/v1.yaml @@ -189,6 +189,20 @@ properties: $ref: "#/definitions/css_color" # todo: description + # Semantic Accent Colors + accent_info: + $ref: "#/definitions/css_color" + # todo: description + accent_highlight: + $ref: "#/definitions/css_color" + # todo: description + accent_warning: + $ref: "#/definitions/css_color" + # todo: description + accent_problem: + $ref: "#/definitions/css_color" + # todo: description + # Charts chart_axis: $ref: "#/definitions/css_color"