@@ -273,9 +273,13 @@ class LiveProfiler(ThemeSection):
273273 func_stack_fg : int = CursesColors .YELLOW
274274 func_shown_fg : int = CursesColors .MAGENTA
275275
276- # Table header colors
276+ # Table header colors (for sorted column highlight)
277277 sorted_header_fg : int = CursesColors .BLACK
278- sorted_header_bg : int = CursesColors .YELLOW
278+ sorted_header_bg : int = CursesColors .CYAN
279+
280+ # Normal header colors (non-sorted columns)
281+ normal_header_fg : int = CursesColors .WHITE
282+ normal_header_bg : int = CursesColors .BLUE
279283
280284 # Data row colors
281285 samples_fg : int = CursesColors .CYAN
@@ -303,7 +307,7 @@ class LiveProfiler(ThemeSection):
303307 # Status display colors
304308 pid_fg = CursesColors .BLUE ,
305309 uptime_fg = CursesColors .GREEN ,
306- time_fg = CursesColors .YELLOW ,
310+ time_fg = CursesColors .RED , # Use red instead of yellow for better visibility on light bg
307311 interval_fg = CursesColors .MAGENTA ,
308312
309313 # Thread view colors
@@ -317,23 +321,27 @@ class LiveProfiler(ThemeSection):
317321 # Stats colors
318322 on_gil_fg = CursesColors .GREEN ,
319323 off_gil_fg = CursesColors .RED ,
320- waiting_gil_fg = CursesColors .YELLOW ,
324+ waiting_gil_fg = CursesColors .RED , # Use red instead of yellow for visibility
321325 gc_fg = CursesColors .MAGENTA ,
322326
323327 # Function display colors
324328 func_total_fg = CursesColors .BLUE ,
325329 func_exec_fg = CursesColors .GREEN ,
326- func_stack_fg = CursesColors .YELLOW ,
330+ func_stack_fg = CursesColors .RED , # Use red instead of yellow
327331 func_shown_fg = CursesColors .MAGENTA ,
328332
329- # Table header colors
333+ # Table header colors (for sorted column highlight)
330334 sorted_header_fg = CursesColors .WHITE ,
331- sorted_header_bg = CursesColors .BLUE ,
335+ sorted_header_bg = CursesColors .MAGENTA ,
336+
337+ # Normal header colors (non-sorted columns)
338+ normal_header_fg = CursesColors .WHITE ,
339+ normal_header_bg = CursesColors .BLUE ,
332340
333341 # Data row colors
334342 samples_fg = CursesColors .BLUE ,
335343 file_fg = CursesColors .GREEN ,
336- func_fg = CursesColors .MAGENTA ,
344+ func_fg = CursesColors .MAGENTA , # Use magenta instead of yellow
337345
338346 # Trend indicator colors
339347 trend_up_fg = CursesColors .GREEN ,
0 commit comments