mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-26 08:18:08 +00:00
18 lines
387 B
QML
18 lines
387 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property QtObject backgroundColor: QtObject {
|
|
property color focused: Colors.q
|
|
property color normal: Colors.a
|
|
}
|
|
|
|
property QtObject textColor: QtObject {
|
|
property color focused: Colors.l
|
|
property color normal: Colors.r
|
|
}
|
|
}
|