Default Settings and colors

- Replaced Dinslaken by Tokyo
- Renamed Colors.highlight to Colors.hover
This commit is contained in:
quadbyte 2025-08-11 18:20:12 -04:00
parent 916d86cd97
commit 18b08bf647
7 changed files with 12 additions and 12 deletions

View file

@ -28,7 +28,7 @@ ComboBox {
implicitWidth: 120 * scaling
implicitHeight: Style.baseWidgetSize * scaling
color: Colors.surfaceVariant
border.color: root.activeFocus ? Colors.highlight : Colors.outline
border.color: root.activeFocus ? Colors.hover : Colors.outline
border.width: Math.max(1, Style.borderThin * scaling)
radius: Style.radiusMedium * scaling
}
@ -93,7 +93,7 @@ ComboBox {
background: Rectangle {
width: root.width - Style.spacingMedium * scaling * 3
color: highlighted ? Colors.highlight : "transparent"
color: highlighted ? Colors.hover : "transparent"
radius: Style.radiusSmall * scaling
}
}