You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
646 B
23 lines
646 B
pragma Singleton
|
|
|
|
import QtQuick 2.13
|
|
|
|
Item {
|
|
//Primary
|
|
property string primaryEnable: "#B2F7EF"
|
|
property string primaryPressed: "#3CFCE6"
|
|
//Secondary
|
|
property string secondaryEnable: "#007dff"
|
|
property string secondaryPressed: "#abb5be"
|
|
//Tertiary
|
|
property string tertiaryEnable: "#E9E8E8"
|
|
property string tertiaryPressed: "#D0D0d0"
|
|
//Other
|
|
property string white: "#f8f8f8"
|
|
property string balck: "#0b0b0b"
|
|
property string success: "#28a745"
|
|
property string danger: "#dc3545"
|
|
property string warning: "#ffc107"
|
|
property string info: "#17a2b8"
|
|
property string gray: "#ced4da"
|
|
}
|
|
|