mirror of
https://github.com/hykilpikonna/hyfetch.git
synced 2026-05-07 14:15:03 -05:00
11 lines
344 B
Python
11 lines
344 B
Python
try:
|
|
from typing import Literal
|
|
except ImportError:
|
|
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']
|