基本信息
- 英文名称:
Bricks Color Palettes - 中文名称:Bricks 调色板
- Schema ID:
bricks://global/color-palettes - Schema 版本:
2.3 - 类型:
array
条目属性
id(string)name(string)colors(array)
Schema 定义
完整 JSON 定义
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "bricks://global/color-palettes",
"schemaVersion": "2.3",
"title": "Bricks Color Palettes",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"colors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"raw": {
"type": "string"
},
"light": {
"type": "string"
},
"dark": {
"type": "string"
}
},
"required": [
"id",
"raw",
"light"
],
"additionalProperties": false
}
}
},
"required": [
"id",
"name",
"colors"
],
"additionalProperties": false
},
"titleZh": "Bricks 调色板"
}
补充说明
更多细节可参考 Bricks 官方 Academy 文档。