Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Hobr committed Jun 30, 2024
1 parent 77cfe88 commit bbb57a0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions util/Data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ class CustomThemes(GreenPassion):
def __init__(self):
super().__init__()

self.List.selection_cursor = "->" # 选择光标
self.Checkbox.selection_icon = "->" # 选择光标
self.List.selection_cursor = "->" # 选择光标 # type: ignore
self.Checkbox.selection_icon = "->" # 选择光标 # type: ignore

self.Checkbox.selected_icon = "✔" # Checkbox选项 的启用图标
self.Checkbox.unselected_icon = "✘" # Checkbox选项 的未启用图标
self.Checkbox.selection_color = f"\033[1;35;106m" # Checkbox选项 的选中颜色(紫,蓝)
self.Checkbox.selected_color = f"\033[93m" # Checkbox选项 的启用颜色(黄)
self.Checkbox.selected_icon = "✔" # Checkbox选项 的启用图标 # type: ignore
self.Checkbox.unselected_icon = "✘" # Checkbox选项 的未启用图标 # type: ignore
self.Checkbox.selection_color = "\033[1;35;106m" # Checkbox选项 的选中颜色(紫,蓝) # type: ignore
self.Checkbox.selected_color = "\033[93m" # Checkbox选项 的启用颜色(黄) # type: ignore

self.List.selection_color = f"\033[1;35;106m" # List选项 的选中颜色(紫,蓝)
self.List.selection_color = "\033[1;35;106m" # List选项 的选中颜色(紫,蓝) # type: ignore

self.Question.mark_color = f"\033[93m" # [?] 中 ? 的颜色(黄)
self.Question.brackets_color = f"\033[96m" # [?] 中 [] 的颜色(蓝)
self.Question.mark_color = "\033[93m" # [?] 中 ? 的颜色(黄) # type: ignore
self.Question.brackets_color = "\033[96m" # [?] 中 [] 的颜色(蓝) # type: ignore


class Data:
Expand Down

0 comments on commit bbb57a0

Please sign in to comment.