diff --git a/hyfetch/presets.py b/hyfetch/presets.py new file mode 100644 index 00000000..0f4965e2 --- /dev/null +++ b/hyfetch/presets.py @@ -0,0 +1,8 @@ +from dataclasses import dataclass +from typing import Literal + + +@dataclass +class ColorProfile: + colors: list[str] + spacing: Literal['equal', 'weighted'] = 'equal'