summaryrefslogtreecommitdiffstats
path: root/typing-stubs/colored/background.pyi
blob: f98ef9980893e2cd2d7f05e50093fe1ef33d3d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from .exceptions import InvalidColor as InvalidColor
from .library import Library as Library
from .utilities import Utilities as Utilities

class MetaBack(type):
    def __getattr__(cls, color: str): ...

class Back(metaclass=MetaBack):
    @classmethod
    def rgb(cls, r: int | str, g: int | str, b: int | str) -> str: ...
    @classmethod
    def RGB(cls, r: int | str, g: int | str, b: int | str) -> str: ...

class back(Back): ...