mirror of
https://github.com/hykilpikonna/hyfetch.git
synced 2026-06-01 13:05:39 -05:00
8 lines
284 B
Python
8 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']
|