14 lines
337 B
Python
Raw Permalink Normal View History

2025-03-07 08:03:18 +01:00
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <wojtryb@gmail.com>
# SPDX-License-Identifier: GPL-3.0-or-later
from dataclasses import dataclass, field
from PyQt5.QtGui import QColor
@dataclass
class Text:
"""Text along with its color."""
value: str
color: QColor = field(default_factory=lambda: QColor("white"))