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.
24 lines
591 B
24 lines
591 B
10 months ago
|
import QtQuick 2.15
|
||
|
|
||
|
Item {
|
||
|
//Primary
|
||
|
property var primaryEnable: "#B2F7EF"
|
||
|
property var primaryPressed: "#3CFCE6"
|
||
|
//Secondary
|
||
|
property var secondaryEnable: "#007dff"
|
||
|
|
||
|
property var secondaryPressed: "#abb5be"
|
||
|
//Tertiary
|
||
|
property var tertiaryEnable: "#E9E8E8"
|
||
|
property var tertiaryPressed: "#D0D0d0
|
||
|
"
|
||
|
//Other
|
||
|
property var white: "#f8f8f8"
|
||
|
property var balck: "#0b0b0b"
|
||
|
property var success: "#28a745"
|
||
|
property var danger: "#dc3545"
|
||
|
property var warning: "#ffc107"
|
||
|
property var info: "#17a2b8"
|
||
|
property var gray: "#ced4da"
|
||
|
}
|