mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
- Theme: For theming, we're just defining some colors centrally for now - Units: This object provides dpi-corrected sizing in the form of gridUnit. The idea is to base gridUnit on the rendered font size, so the ui scales with text size. As this interpolates font size and dpi, the sizing is rather responsive. These are the basics, now we can kill lots of hardcoded pixel values. Signed-off-by: Sebastian Kügler <sebas@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
7 lines
No EOL
154 B
QML
7 lines
No EOL
154 B
QML
import QtQuick 2.3
|
|
|
|
QtObject {
|
|
property color textColor: "#333333"
|
|
property color backgroundColor: "#ececec"
|
|
property color highlightColor: "#91c4e1"
|
|
} |