Skip to content

Commit

Permalink
UI|Default Style: Adjusted focus indicator color
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Aug 7, 2016
1 parent 7a8120a commit bd656ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -35,7 +35,7 @@ label {

focus {
color flash.on { rgb $= accent.rgb }
color flash.off { rgb $= gui.colorAlpha(accent.rgb, 0.25) }
color flash.off { rgb $= gui.colorMix(accent.rgb, [0, 0, 0], 0.75) }
}

popup {
Expand Down
2 changes: 1 addition & 1 deletion doomsday/sdk/libappfw/src/guiwidget.cpp
Expand Up @@ -1159,7 +1159,7 @@ void GuiWidget::glMakeGeometry(DefaultVertexBuf::Builder &verts)
{
verts.makeFlexibleFrame(rule().recti().shrunk(d->toDevicePixels(2)),
thick,
Vector4f(0, 0, 0, .666f),
Vector4f(0, 0, 0, .5f),
rootWgt.atlas().imageRectf(rootWgt.boldRoundCorners()));
}
verts.makeFlexibleFrame(rule().recti().shrunk(d->toDevicePixels(1)),
Expand Down

0 comments on commit bd656ac

Please sign in to comment.