Maybe implement Marina or Reflect as the theme for the QML version? Just create the reference files for the required graphics and let me or someone else fill them out for the actual graphics as AFAIK you can't really copy-paste the Nokia licensed Alpha or Beta theme graphics. It's too bad QML doesn't support system wide look-and-feel, but any theme should be better than the single-color contour buttons. You might need to use a "sliding door" technique for the buttons themselves, or just use make the each size use individual images
Rectangle { property alias icon: icon.source property alias iconWidth: icon.width property alias iconHeight: icon.height signal buttonClicked id: button width: 150 height: 50 radius: 10 color: mouseArea.pressed ? "#3399bb" : "black" border.width: 2 border.color: "#3399bb" Image { id: icon anchors.centerIn: button width: 50 height: 50 smooth: true } MouseArea { id: mouseArea anchors.fill: button onClicked: buttonClicked() } }