Set default filament color rgb(242, 117, 78)

Introduce secondary accent color rgb(242, 117, 78)
This commit is contained in:
SoftFever 2023-04-01 22:20:53 +08:00
parent b85b514bd9
commit c7dbf848a6
3 changed files with 5 additions and 5 deletions

View file

@ -302,7 +302,7 @@ void TabCtrl::doRender(wxDC& dc)
#else
dc.SetPen(wxPen(border_color.colorForStates(states), border_width));
dc.DrawLine(0, size.y - BS2, size.x, size.y - BS2);
wxColor c(0x968800);
wxColour c(0xf2, 0x75, 0x4e, 0xff);
dc.SetPen(wxPen(c, 1));
dc.SetBrush(c);
dc.DrawRoundedRectangle(x1 - radius, size.y - BS2 - border_width * 3, x2 + radius * 2 - x1, border_width * 3, radius);