workstations and light theme

This commit is contained in:
2026-04-16 16:33:48 +03:00
parent 555e920c18
commit bbfaf5ccc5
37 changed files with 1015 additions and 106 deletions
+39
View File
@@ -0,0 +1,39 @@
{
"$id": "https://scuroneko.dev/schemas/stack.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"items": {
"additionalProperties": false,
"properties": {
"hide": {
"type": "boolean"
},
"key": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"tags": {
"items": {
"minLength": 1,
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"tone": {
"$ref": "./shared.schema.json#/$defs/tone"
},
"years": {
"minimum": 0,
"type": "number"
}
},
"required": ["key", "name", "tone", "years"],
"type": "object"
},
"title": "Stack",
"type": "array"
}