@@ -114,25 +114,25 @@ def create_widgets(self):
114114
115115 btn_3yr = tk .Button (btn_container , text = "New 3-Year Budget" ,
116116 command = lambda : self .create_new_budget (3 ),
117- font = ("Arial" , 10 ), bg = "#5C8A4D " , fg = "white" ,
118- activebackground = "#4A7340 " , activeforeground = "white" ,
119- highlightbackground = "#5C8A4D " ,
117+ font = ("Arial" , 10 ), bg = "#2C5F87 " , fg = "white" ,
118+ activebackground = "#1E4A6E " , activeforeground = "white" ,
119+ highlightbackground = "#2C5F87 " ,
120120 padx = 12 , pady = 5 , cursor = "hand2" )
121121 btn_3yr .pack (side = tk .LEFT , padx = 5 )
122122
123123 btn_5yr = tk .Button (btn_container , text = "New 5-Year Budget" ,
124124 command = lambda : self .create_new_budget (5 ),
125- font = ("Arial" , 10 ), bg = "#5C8A4D " , fg = "white" ,
126- activebackground = "#4A7340 " , activeforeground = "white" ,
127- highlightbackground = "#5C8A4D " ,
125+ font = ("Arial" , 10 ), bg = "#2C5F87 " , fg = "white" ,
126+ activebackground = "#1E4A6E " , activeforeground = "white" ,
127+ highlightbackground = "#2C5F87 " ,
128128 padx = 12 , pady = 5 , cursor = "hand2" )
129129 btn_5yr .pack (side = tk .LEFT , padx = 5 )
130130
131131 btn_10yr = tk .Button (btn_container , text = "New 10-Year Budget" ,
132132 command = lambda : self .create_new_budget (10 ),
133- font = ("Arial" , 10 ), bg = "#5C8A4D " , fg = "white" ,
134- activebackground = "#4A7340 " , activeforeground = "white" ,
135- highlightbackground = "#5C8A4D " ,
133+ font = ("Arial" , 10 ), bg = "#2C5F87 " , fg = "white" ,
134+ activebackground = "#1E4A6E " , activeforeground = "white" ,
135+ highlightbackground = "#2C5F87 " ,
136136 padx = 12 , pady = 5 , cursor = "hand2" )
137137 btn_10yr .pack (side = tk .LEFT , padx = 5 )
138138
0 commit comments