瀏覽代碼

Merge branch 'master' of github.com:hykilpikonna/hyfetch

Hykilpikonna 2 年之前
父節點
當前提交
77614b635f
共有 1 個文件被更改,包括 43 次插入0 次删除
  1. 43 0
      hyfetch/presets.py

+ 43 - 0
hyfetch/presets.py

@@ -550,4 +550,47 @@ PRESETS: dict[str, ColorProfile] = {
         '#7D2557'
     ]),
 
+    'gendernonconforming1': ColorProfile(
+        ColorProfile([
+            '#50284d',
+            '#96467b',
+            '#5c96f7',
+            '#ffe6f7',
+            '#5c96f7',
+            '#96467b',
+            '#50284d'
+        ]).with_weights([
+            4,1,1,1,1,1,4
+        ])
+    ),
+
+    'gendernonconforming2': ColorProfile([
+        '#50284d',
+        '#96467b',
+        '#5c96f7',
+        '#ffe6f7',
+        '#5c96f7',
+        '#96467b',
+        '#50284d'
+    ]),
+
+    'femboy': ColorProfile([
+        "#d260a5",
+        "#e4afcd",
+        "#fefefe",
+        "#57cef8",
+        "#fefefe",
+        "#e4afcd",
+        "#d260a5"
+    ]),
+
+    'tomboy': ColorProfile([
+        "#2f3fb9",
+        "#613a03",
+        "#fefefe",
+        "#f1a9b7",
+        "#fefefe",
+        "#613a03",
+        "#2f3fb9"
+    ]),
 }