From e044250f5cb29197d439cfe93df34b3089cef1ae Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Sun, 10 Apr 2022 03:17:42 -0400 Subject: [PATCH] [+] RGB color util --- hyfetch/color_util.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hyfetch/color_util.py diff --git a/hyfetch/color_util.py b/hyfetch/color_util.py new file mode 100644 index 00000000..6465ae3e --- /dev/null +++ b/hyfetch/color_util.py @@ -0,0 +1,7 @@ +from typing import NamedTuple + + +class RGB(NamedTuple): + r: int + g: int + b: int