Added project implementation

This commit is contained in:
Yury Shuvakin
2024-01-22 18:30:04 +09:00
parent 4ef6c3fcb5
commit ccd48df127
35 changed files with 1519 additions and 0 deletions

23
qml/Palette/Palette.qml Normal file
View File

@@ -0,0 +1,23 @@
pragma Singleton
import QtQuick 2.12
QtObject {
property color titleTextColor: "#232323"
property color labelTextColor: "#232323"
property color alternativeLabelTextColor: "#FFFFFF"
property color descriptionTextColor: "#757575"
property color backgroundColor: "#EEE"
property color controlBackgroundColor: "#FCFCFC"
property color indicatorBackgroundColor: "#F0F4FF"
property color switchBackgroundColor: "#F0F4FF"
property color switchActiveBackgroundColor: "#3069FE"
property color borderColor: "#D0D0D0"
property color informationColor: "#4C68ED"
property color invalidColor: "#A31C00"
property color goodColor: "#009352"
property color neutralColor: "#DFE0EB"
}

2
qml/Palette/qmldir Normal file
View File

@@ -0,0 +1,2 @@
module Palette
singleton Palette 1.0 Palette.qml