We use cookies to ensure you get the best experience on our website
This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
登録
サインイン
0ct0pu5
/
neofetch
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ソースを参照
[+] RGB color util
Azalea (on HyDEV-Daisy)
3 年 前
親
85046474a5
コミット
e044250f5c
1 ファイル変更
、
7 行追加
、
0 行削除
分割表示
差分情報を表示
7
0
hyfetch/color_util.py
+ 7
- 0
hyfetch/color_util.py
ファイルの表示
@@ -0,0 +1,7 @@
+from typing import NamedTuple
+
+
+class RGB(NamedTuple):
+ r: int
+ g: int
+ b: int