Skip to content

Commit 4de6752

Browse files
committed
Changed labels color
1 parent 7a6fc3d commit 4de6752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

YoloGUI.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ def __init__(self):
5151
self.settings_frame = tk.LabelFrame(self, text='Settings', bg='LightSteelBlue2')
5252
self.settings_frame.grid(column=0, row=2)
5353

54-
self.confidence_label = tk.Label(self.settings_frame, text='Confidence')
54+
self.confidence_label = tk.Label(self.settings_frame, text='Confidence', bg='SteelBlue3', fg='white')
5555
self.confidence_label.grid(column=0, row=0)
5656

5757
self.confidence_box = tk.Spinbox(self.settings_frame, textvariable=self.confidence_var, increment=0.1, from_=0, to=100, width=10)
5858
self.confidence_box.grid(column=1, row=0)
5959

60-
self.threshold_label = tk.Label(self.settings_frame, text='Threshold')
60+
self.threshold_label = tk.Label(self.settings_frame, text='Threshold ', bg='SteelBlue3', fg='white')
6161
self.threshold_label.grid(column=0, row=1)
6262

6363
self.threshold_box = tk.Spinbox(self.settings_frame, textvariable=self.threshold_var, increment=0.1, from_=0, to=100, width=10)

0 commit comments

Comments
 (0)