mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
overview: clearer window borders
This commit is contained in:
parent
a6ecf107b3
commit
93a14293aa
1 changed files with 4 additions and 3 deletions
|
|
@ -76,9 +76,10 @@ Item { // Window
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
radius: Appearance.rounding.windowRounding * root.scale
|
radius: Appearance.rounding.windowRounding * root.scale
|
||||||
color: pressed ? Appearance.colors.colLayer2Active : hovered ? Appearance.colors.colLayer2Hover : Appearance.colors.colLayer2
|
color: pressed ? ColorUtils.transparentize(Appearance.colors.colLayer2Active, 0.5) :
|
||||||
opacity: pressed ? 0.5 : hovered ? 0.3 : 0
|
hovered ? ColorUtils.transparentize(Appearance.colors.colLayer2Hover, 0.7) :
|
||||||
border.color : ColorUtils.transparentize(Appearance.m3colors.m3outline, 0.9)
|
ColorUtils.transparentize(Appearance.colors.colLayer2)
|
||||||
|
border.color : ColorUtils.transparentize(Appearance.m3colors.m3outline, 0.7)
|
||||||
border.width : 1
|
border.width : 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue