14 lines
340 B
QML
14 lines
340 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
|
|
// based on https://colorhunt.co/palette/181c143c3d37697565ecdfcc
|
|
Item {
|
|
property color background: "#181C14"
|
|
property color card: "#232421"
|
|
property color accent: "#697565"
|
|
property color muted: "#A0A0A0"
|
|
property color foreground: "#ECDFCC"
|
|
property color softBorder: "#282926"
|
|
}
|