Macos theme 6.9.2 to 6.10 broken?
-
Hi,
Using the following palette on MacOS Tahoe 26.1:
SystemPalette { id: palette colorGroup: SystemPalette.Active }On 6.9.x, using the code for the bottom chatbox input:
Rectangle { id: inputBox anchors.fill: parent color: palette.window radius: 12 border.color: palette.midlight border.width: 1 // TextArea content TextArea { id: promptField anchors.fill: parent anchors.margins: 8 background: null color: palette.text wrapMode: TextArea.Wrap placeholderText: "e.g., Find Python devs in Germany with 3+ years" padding: 8 rightPadding: sendBtn.width + 16 Keys.onReturnPressed: function(event) { if (!event.isAutoRepeat && (event.modifiers & Qt.ShiftModifier) === 0) { sendBtn.clicked() event.accepted = true } } } // Send button inside the TextArea Button { id: sendBtn text: "⏎" anchors.right: parent.right anchors.bottom: parent.bottom anchors.margins: 8 width: 45 height: 37 font.pixelSize: 18 } }I would get something like:

But with the same code now built with 6.10, I get:

Why are now all palette colors white? where are the shades of gray in the system theme?