Skip to content

Commit 2b75f72

Browse files
jared-duvalclaude
andcommitted
Fix button contrast - use dark blue for template buttons
Changed from light green to dark blue (#2C5F87) matching other buttons Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 9a97153 commit 2b75f72

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

budget_justification_gui.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)