7 lines
284 B
Python
7 lines
284 B
Python
from typing_extensions import Literal
|
|
|
|
AnsiMode = Literal['default', 'ansi', '8bit', 'rgb']
|
|
LightDark = Literal['light', 'dark']
|
|
BackendLiteral = Literal["neofetch", "fastfetch"]
|
|
ColorAlignMode = Literal['horizontal', 'vertical', 'custom']
|
|
ColorSpacing = Literal['equal', 'weighted']
|