move / refactor json schemas for color themes

This commit is contained in:
James Brumond 2022-10-24 20:00:04 -07:00
parent 209f163ec3
commit 082e276c7c
Signed by: james
GPG Key ID: 24BA25B8B303B023
2 changed files with 18 additions and 0 deletions

View File

@ -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 <mark>text</mark> tag (or by using ==text== in markdown)\n"

View File

@ -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 <mark>
text_highlight:
$ref: "#/definitions/css_color"