We use cookies to ensure you get the best experience on our website
This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
0ct0pu5
/
neofetch
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Sfoglia il codice sorgente
[+] RGB color util
Azalea (on HyDEV-Daisy)
3 anni fa
parent
85046474a5
commit
e044250f5c
1 ha cambiato i file
con
7 aggiunte
e
0 eliminazioni
Visualizzazione unificata
Mostra Diff Stats
7
0
hyfetch/color_util.py
+ 7
- 0
hyfetch/color_util.py
Vedi File
@@ -0,0 +1,7 @@
+from typing import NamedTuple
+
+
+class RGB(NamedTuple):
+ r: int
+ g: int
+ b: int