diff --git a/schemas/color-theme/v1.json b/json-schema/color-theme/v1.json similarity index 96% rename from schemas/color-theme/v1.json rename to json-schema/color-theme/v1.json index ad9a2db..26e6c35 100644 --- a/schemas/color-theme/v1.json +++ b/json-schema/color-theme/v1.json @@ -60,6 +60,14 @@ "$ref": "#/definitions/css_color", "description": "The color of hyperlinks that have been previously visited" }, + "bg_qrcode": { + "$ref": "#/definitions/css_color", + "description": "The background color (i.e. typically white) of rendered QR codes\n" + }, + "stroke_qrcode": { + "$ref": "#/definitions/css_color", + "description": "The stroke color (i.e. typically black) of rendered QR codes\n" + }, "text_highlight": { "$ref": "#/definitions/css_color", "description": "The color of text highlighted using the text tag (or by using ==text== in markdown)\n" diff --git a/schemas/color-theme/v1.yaml b/json-schema/color-theme/v1.yaml similarity index 97% rename from schemas/color-theme/v1.yaml rename to json-schema/color-theme/v1.yaml index a983586..0a895a1 100644 --- a/schemas/color-theme/v1.yaml +++ b/json-schema/color-theme/v1.yaml @@ -74,6 +74,16 @@ properties: $ref: "#/definitions/css_color" description: The color of hyperlinks that have been previously visited + # QR Codes + bg_qrcode: + $ref: "#/definitions/css_color" + description: > + The background color (i.e. typically white) of rendered QR codes + stroke_qrcode: + $ref: "#/definitions/css_color" + description: > + The stroke color (i.e. typically black) of rendered QR codes + # Text Highlighted with text_highlight: $ref: "#/definitions/css_color"