controller: border defaults → 1px (idle и motion)

User feedback: 4px motion border слишком жирная, к тому же много false motion
от Frigate (зоны/чувствительность будут tune'иться позже). Уменьшаем default
до 1px чтобы borders не мешали visually. Width конфигурируется (1..16).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
gx
2026-05-20 20:54:09 +01:00
parent e877a254ce
commit a576b4ec51
@@ -43,14 +43,14 @@ class FrigateCameraMapping(BaseModel):
class BorderTheme(BaseModel):
"""Стиль cell border в трёх состояниях. Color = HEX RGB."""
"""Стиль cell border в двух состояниях. Color = HEX RGB."""
idle_color: str = Field(default="#808080", description="Нейтральная разделительная рамка")
idle_width: int = Field(default=2, ge=1, le=8)
idle_width: int = Field(default=1, ge=1, le=16)
idle_opacity: float = Field(default=0.4, ge=0.0, le=1.0)
motion_color: str = Field(default="#FF0000", description="Цвет при frigate motion ON")
motion_width: int = Field(default=4, ge=1, le=16)
motion_width: int = Field(default=1, ge=1, le=16)
motion_opacity: float = Field(default=1.0, ge=0.0, le=1.0)