29 lines
522 B
QML
29 lines
522 B
QML
pragma Singleton
|
|
import QtQuick 2.0
|
|
import "../../ui"
|
|
|
|
StyleBase {
|
|
// This is the default style. No overrides
|
|
|
|
backgroundColor: "#ffffff"
|
|
foregroundColor: darkGray
|
|
accentColor: orange
|
|
tileBackgroundColor: lightestGray
|
|
|
|
|
|
property color lightestGray: "#F4F4F4"
|
|
|
|
red: "#EB5E65"
|
|
green: "#49BF84"
|
|
yellow: "#FFCC00"
|
|
white: "#f1f1f1"
|
|
gray: "#B4B1AA"
|
|
darkGray: "#4E4D42"
|
|
orange: "#F4A506"
|
|
blue: "#3C99D5"
|
|
darkBlue: "#237CAE"
|
|
lime: "#99EA53"
|
|
purple: "#F57F7C"
|
|
|
|
}
|