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
629 B

10 months ago
import QtQuick 2.15
Item {
//Primary
10 months ago
property string primaryEnable: "#B2F7EF"
property string primaryPressed: "#3CFCE6"
10 months ago
//Secondary
10 months ago
property string secondaryEnable: "#007dff"
10 months ago
10 months ago
property string secondaryPressed: "#abb5be"
10 months ago
//Tertiary
10 months ago
property string tertiaryEnable: "#E9E8E8"
property string tertiaryPressed: "#D0D0d0"
10 months ago
//Other
10 months ago
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"
10 months ago
}