nosignal-shell/modules/controlcenter/appearance/sections/ThemeModeSection.qml
2026-03-20 22:33:26 +11:00

19 lines
415 B
QML

pragma ComponentBehavior: Bound
import qs.components.controls
import qs.services
import QtQuick
CollapsibleSection {
title: qsTr("Theme mode")
description: qsTr("Light or dark theme")
showBackground: true
SwitchRow {
label: qsTr("Dark mode")
checked: !Colours.currentLight
onToggled: checked => {
Colours.setMode(checked ? "dark" : "light");
}
}
}