14 lines
337 B
Python
14 lines
337 B
Python
|
|
# 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"))
|