We use cookies to ensure you get the best experience on our website
This website works better with JavaScript
Home
Explore
Help
Register
Sign In
0ct0pu5
/
neofetch
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
[+] RGB color util
Azalea (on HyDEV-Daisy)
3 years ago
parent
85046474a5
commit
e044250f5c
1 changed files
with
7 additions
and
0 deletions
Split View
Show Diff Stats
7
0
hyfetch/color_util.py
+ 7
- 0
hyfetch/color_util.py
View File
@@ -0,0 +1,7 @@
+from typing import NamedTuple
+
+
+class RGB(NamedTuple):
+ r: int
+ g: int
+ b: int