imgui_push_style_color
Temporarily override a widget's style color by pushing an RGBA value onto the style stack; balance with a pop call.
Instructions
Push a style color override onto the style stack for a specific window or widget. Must be balanced with imgui_pop_style_color.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | Yes | RGBA color [r,g,b,a] each 0.0-1.0 | |
| target | Yes | Target window or widget id to apply the style to | |
| col_idx | Yes | ImGuiCol_ index (0=Text, 1=TextDisabled, 2=WindowBg, etc.) |