Appearance
Control the background and device appearance.
Usage
json
{
"settings": {
"appearance": {
"backgroundColor": "#1a1a2e",
"gradientEnabled": true,
"gradientColor": "#16213e",
"deviceColor": "#000000"
}
}
}Properties
| Property | Type | Range | Description |
|---|---|---|---|
backgroundColor | string | Hex color | Background color (e.g., #1a1a2e) |
gradientEnabled | boolean | - | Enable gradient background |
gradientColor | string | Hex color | Gradient end color |
deviceColor | string | Hex color | Device frame color |
Color Format
Colors must be in 6-character hex format with a # prefix:
#RRGGBBExamples:
#000000- Black#ffffff- White#1a1a2e- Dark blue
Examples
Solid Background
json
{
"settings": {
"appearance": {
"backgroundColor": "#0f0f0f"
}
}
}Gradient Background
json
{
"settings": {
"appearance": {
"backgroundColor": "#1a1a2e",
"gradientEnabled": true,
"gradientColor": "#16213e"
}
}
}Custom Device Color
json
{
"settings": {
"appearance": {
"backgroundColor": "#ffffff",
"deviceColor": "#c0c0c0"
}
}
}