Changed datatype of rgb

This commit is contained in:
Petr Kalis 2025-12-08 10:11:36 +01:00
parent 89129dfeb4
commit a4559fe79e

View file

@ -62,7 +62,7 @@ class ProfileConfig:
# Background color defined as (R, G, B, A) tuple.
# Note: Use float for alpha channel (0.0 to 1.0).
background_color: Tuple[float, float, float, float] = (0.0, 0.0, 0.0, 0.0)
background_color: Tuple[int, int, int, float] = (0, 0, 0, 0.0)
@classmethod
def from_dict(cls, data: Dict[str, Any]) -> "ProfileConfig":