This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2022-04-13 12:27:02 +02:00

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"
}