Implemented QML skeleton for the application
This commit is contained in:
22
qml/Utils/Palette.qml
Normal file
22
qml/Utils/Palette.qml
Normal file
@@ -0,0 +1,22 @@
|
||||
pragma Singleton
|
||||
import QtQuick 2.12
|
||||
|
||||
QtObject {
|
||||
property color textColor: "#000000"
|
||||
property color selectedTextColor: "#009352"
|
||||
property color contentTextColor: "#869098"
|
||||
property color alternativeTextColor: "#FFFFFF"
|
||||
|
||||
property color backgroundColor: "#FFFFFF"
|
||||
property color hoveredBackgroundColor: "#F0F1F4"
|
||||
property color selectedBackgroundColor: "#CCE9DC"
|
||||
property color alternativeBackgroundColor: "#009352"
|
||||
property color screenBackgroundColor: "#F7F8FC"
|
||||
|
||||
property color borderColor: "#DFE0EB"
|
||||
|
||||
property color buttonColor: "#F7F8FC"
|
||||
property color alternativeButtonColor: "#009352"
|
||||
property color hoveredButtonColor: "#03AC61"
|
||||
property color pressedButtonColor: "#057845"
|
||||
}
|
||||
Reference in New Issue
Block a user