textual-paint/typings/ochre/color_pair.pyi
2023-05-09 16:58:25 -04:00

17 lines
379 B
Python

"""
This type stub file was generated by pyright.
"""
from dataclasses import dataclass
from typing import Optional
from .spaces import Color
"""A color pair of foreground and background colors."""
@dataclass(frozen=True)
class ColorPair:
"""A color pair of foreground and background colors."""
foreground: Optional[Color] = ...
background: Optional[Color] = ...