import QtQuick import QtQuick.Layouts RowLayout { spacing: 0 Text { text: " Photons:" color: shellRoot.white font { family: shellRoot.fontFamily pixelSize: shellRoot.fontSize } } Text { text: brightness color: shellRoot.orange font { family: shellRoot.fontFamily pixelSize: shellRoot.fontSize bold: true } } Text { text: "(" + temperature + "K)" color: shellRoot.red font { family: shellRoot.fontFamily pixelSize: shellRoot.fontSize bold: true } } }