[+] RGB color util

This commit is contained in:
Azalea (on HyDEV-Daisy)
2022-04-10 03:17:42 -04:00
parent 85046474a5
commit e044250f5c

7
hyfetch/color_util.py Normal file
View File

@@ -0,0 +1,7 @@
from typing import NamedTuple
class RGB(NamedTuple):
r: int
g: int
b: int