Calm down the boldness and tiny spacing adjustments

This commit is contained in:
quadbyte 2025-08-17 21:28:57 -04:00
parent 9661712829
commit 0e8c37a215
5 changed files with 11 additions and 9 deletions

View file

@ -23,9 +23,10 @@ Singleton {
property real fontSizeXL: 18
property real fontSizeXXL: 24
// Font weight / Unsure if we keep em?
// Font weight
property int fontWeightRegular: 400
property int fontWeightMedium: 500
property int fontWeightSemiBold: 600
property int fontWeightBold: 700
// Radii

View file

@ -90,7 +90,7 @@ Row {
fullTitleMetrics.contentWidth, 150 * scaling)
text: getTitle()
font.pointSize: Style.fontSizeReduced * scaling
font.weight: Style.fontWeightBold
font.weight: Style.fontWeightMedium
elide: Text.ElideRight
anchors.verticalCenter: parent.verticalCenter
verticalAlignment: Text.AlignVCenter

View file

@ -63,7 +63,7 @@ Row {
150 * scaling)
text: getTitle()
font.pointSize: Style.fontSizeReduced * scaling
font.weight: Style.fontWeightBold
font.weight: Style.fontWeightMedium
elide: Text.ElideRight
anchors.verticalCenter: parent.verticalCenter
verticalAlignment: Text.AlignVCenter

View file

@ -28,7 +28,7 @@ Row {
Row {
id: row
anchors.verticalCenter: parent.verticalCenter
spacing: Style.marginTiny * scaling
spacing: Style.marginSmall * scaling
Row {
id: cpuUsageLayout
spacing: Style.marginTiny * scaling
@ -43,7 +43,7 @@ Row {
id: cpuUsageText
text: `${SystemStatService.cpuUsage}%`
font.pointSize: Style.fontSizeReduced * scaling
font.weight: Style.fontWeightBold
font.weight: Style.fontWeightMedium
anchors.verticalCenter: parent.verticalCenter
verticalAlignment: Text.AlignVCenter
color: Color.mPrimary
@ -53,7 +53,8 @@ Row {
// CPU Temperature Component
Row {
id: cpuTempLayout
spacing: Style.marginTiny * scaling
// spacing is thin here to compensate for the vertical thermometer icon
spacing: Style.marginTiniest * scaling
NIcon {
text: "thermometer"
@ -63,7 +64,7 @@ Row {
NText {
text: `${SystemStatService.cpuTemp}°C`
font.pointSize: Style.fontSizeReduced * scaling
font.weight: Style.fontWeightBold
font.weight: Style.fontWeightMedium
anchors.verticalCenter: parent.verticalCenter
verticalAlignment: Text.AlignVCenter
color: Color.mPrimary
@ -83,7 +84,7 @@ Row {
NText {
text: `${SystemStatService.memoryUsageGb}G`
font.pointSize: Style.fontSizeReduced * scaling
font.weight: Style.fontWeightBold
font.weight: Style.fontWeightMedium
anchors.verticalCenter: parent.verticalCenter
verticalAlignment: Text.AlignVCenter
color: Color.mPrimary

View file

@ -8,6 +8,6 @@ Text {
font.family: Settings.data.ui.fontFamily
font.pointSize: Style.fontSizeMedium * scaling
font.weight: Style.fontWeightRegular
font.weight: Style.fontWeightMedium
color: Color.mOnSurface
}