29 lines
673 B
QML
29 lines
673 B
QML
import QtQuick
|
|
import QtQuick.Controls.Basic
|
|
|
|
ApplicationWindow {
|
|
id: root
|
|
visible: true
|
|
|
|
palette {
|
|
accent: Theme.accent
|
|
dark: Theme.foreground
|
|
window: Theme.background
|
|
windowText: Theme.foreground
|
|
buttonText: Theme.foreground
|
|
base: Theme.secondaryBackground
|
|
brightText: Theme.muted
|
|
text: Theme.foreground
|
|
button: Theme.accent
|
|
midlight: Theme.card
|
|
light: Theme.secondaryText
|
|
highlight: Theme.highlight
|
|
highlightedText: Theme.secondaryBackground
|
|
placeholderText: Theme.placeholderText
|
|
}
|
|
|
|
title: qsTr("Flowy")
|
|
width: 640
|
|
height: 480
|
|
}
|