@@ -60,7 +60,8 @@ COLOR_SCHEMES = {
6060 "COLOR_TAB_INACTVE" : ("gray20" , "gray60" ),
6161 "COLOR_BACKGROUND" : ("SystemButtonFace" , "#202020" ),
6262 "COLOR_PROGRESSBAR" : ("#00a31e" , "#00a31e" ),
63- "COLOR_ONE" : ("lightgrey" , "grey5" ),
63+ "COLOR_ZERO" : ("lightgrey" , "grey10" ),
64+ "COLOR_ONE" : ("lightgrey" , "grey20" ),
6465 "COLOR_TWO" : ("lightgreen" , "#0a420a" ),
6566 "COLOR_THREE" : ("lightblue" , "#12303b" ),
6667 "COLOR_FOUR" : ("lightgoldenrodyellow" , "#5c5c0a" ),
@@ -92,6 +93,7 @@ COLOR_PRIMARY = COLOR_SCHEMES["COLOR_PRIMARY"][is_dark_theme]
9293COLOR_SECONDARY = COLOR_SCHEMES ["COLOR_SECONDARY" ][is_dark_theme ]
9394COLOR_TAB_INACTVE = COLOR_SCHEMES ["COLOR_TAB_INACTVE" ][is_dark_theme ]
9495COLOR_PROGRESSBAR = COLOR_SCHEMES ["COLOR_PROGRESSBAR" ][is_dark_theme ]
96+ COLOR_ZERO = COLOR_SCHEMES ["COLOR_ZERO" ][is_dark_theme ]
9597COLOR_ONE = COLOR_SCHEMES ["COLOR_ONE" ][is_dark_theme ]
9698COLOR_TWO = COLOR_SCHEMES ["COLOR_TWO" ][is_dark_theme ]
9799COLOR_THREE = COLOR_SCHEMES ["COLOR_THREE" ][is_dark_theme ]
@@ -2964,7 +2966,7 @@ button_remove_item = tk.Button(
29642966 cursor = "hand2"
29652967)
29662968style = ttk .Style ()
2967- style .configure ("Treeview" , rowheight = 25 , background = COLOR_ONE , fieldbackground = COLOR_WB , foreground = COLOR_BW )
2969+ style .configure ("Treeview" , rowheight = 25 , background = COLOR_ZERO , fieldbackground = COLOR_WB , foreground = COLOR_BW )
29682970style .map ("Treeview" , background = [('selected' , TREEVIEW_SELECTED_COLOR )])
29692971# Replace the "Add Pair" button with a Menubutton
29702972button_addfile = tk .Menubutton (
@@ -4105,4 +4107,4 @@ dark_title_bar(root)
41054107if os .path .exists ('icon.ico' ):
41064108 root .iconbitmap ('icon.ico' )
41074109root .deiconify () # Show the window after it's been built
4108- root .mainloop ()
4110+ root .mainloop ()
0 commit comments