diff --git a/basis/ui/gadgets/colors/colors.factor b/basis/ui/gadgets/colors/colors.factor index 6bbe87b5e9..95584d6212 100644 --- a/basis/ui/gadgets/colors/colors.factor +++ b/basis/ui/gadgets/colors/colors.factor @@ -4,6 +4,7 @@ USING: accessors colors colors.constants ui.pens.solid ; IN: ui.gadgets.colors CONSTANT: toolbar-background COLOR: grey95 +CONSTANT: toolbar-button-pressed-background COLOR: dark-gray CONSTANT: menu-background COLOR: grey95 CONSTANT: menu-border-color COLOR: grey75 diff --git a/basis/ui/gadgets/toolbar/toolbar.factor b/basis/ui/gadgets/toolbar/toolbar.factor index bd58336491..66828cec16 100644 --- a/basis/ui/gadgets/toolbar/toolbar.factor +++ b/basis/ui/gadgets/toolbar/toolbar.factor @@ -10,7 +10,7 @@ IN: ui.gadgets.toolbar : ( -- pen ) toolbar-background dup - line-color dup dup + toolbar-button-pressed-background dup dup ; : toolbar-button-theme ( gadget -- gadget )