We use cookies to ensure you get the best experience on our website
This website works better with JavaScript
Página inicial
Explorar
Ajuda
Registrar
Entrar
0ct0pu5
/
neofetch
Observar
1
Favorito
0
Fork
0
Arquivos
Issues
0
Pull Requests
0
Wiki
Ver código fonte
[+] RGB color util
Azalea (on HyDEV-Daisy)
3 anos atrás
pai
85046474a5
commit
e044250f5c
1 arquivos alterados
com
7 adições
e
0 exclusões
Visão dividida
Mostrar estatísticas do Diff
7
0
hyfetch/color_util.py
+ 7
- 0
hyfetch/color_util.py
Ver arquivo
@@ -0,0 +1,7 @@
+from typing import NamedTuple
+
+
+class RGB(NamedTuple):
+ r: int
+ g: int
+ b: int