mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 21:28:07 +00:00
16 lines
460 B
QML
16 lines
460 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
import QtQuick 2.7
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'AvatarSticker'
|
|
property var stickerBackgroundColor: ColorsList.add(sectionName+'_out_bg', 'avatar_initials_sticker_bg')
|
|
property var inBackgroundColor: ColorsList.add(sectionName+'_in_bg', 'avatar_initials_bg')
|
|
property int radius : 10
|
|
}
|