mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
105 lines
3.4 KiB
QML
105 lines
3.4 KiB
QML
pragma Singleton
|
|
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
property color main1_500_main: "#FE5E00"
|
|
|
|
property color main2_0: "#FAFEFF"
|
|
property color main2_100: "#EEF6F8"
|
|
property color main2_200: "#DFECF2"
|
|
property color main2_300: "#C0D1D9"
|
|
property color main2_400: "#9AABB5"
|
|
property color main2_500main: "#6C7A87"
|
|
property color main2_700: "#364860"
|
|
|
|
property color warning_600: "#DBB820"
|
|
|
|
property color grey_0: "#FFFFFF"
|
|
property color grey_500: "#4E4E4E"
|
|
property color grey_600: "#2E3030"
|
|
property color grey_900: "#070707"
|
|
|
|
property color danger_500: "#DD5F5F"
|
|
|
|
property color info_500_main: "#4AA8FF"
|
|
|
|
property color success_500main: "#4FAE80"
|
|
|
|
property string emojiFont: "Noto Color Emoji"
|
|
property color buttonPressedBackground: "#c74b02"
|
|
property color buttonPressedInversedBackground: "#fff1e8"
|
|
property int radioButtonTextSize: 8
|
|
property int radioButtonTitleSize: 9
|
|
property double checkboxBorderWidth: 2
|
|
property int buttonTextSize: 10
|
|
property color carouselLightGrayColor: "#DFECF2"
|
|
property color formItemLabelColor: "#4E6074"
|
|
property int formItemLabelSize: 8
|
|
property color formItemDisableColor: "#949494"
|
|
property color formItemDisableBackgroundColor: "#EDEDED"
|
|
property color formItemBackgroundColor: "#F9F9F9"
|
|
property color formItemBorderColor: "#EDEDED"
|
|
|
|
property int tabButtonTextSize: 11
|
|
property color verticalTabBarTextColor: "white"
|
|
property int verticalTabButtonTextSize: 6
|
|
|
|
property color comboBoxHighlightColor: "#C0D1D9"
|
|
property color comboBoxHoverColor: "#6C7A87"
|
|
|
|
property color aboutButtonTextColor: "#6C7A87"
|
|
|
|
property color questionTextColor: "#364860"
|
|
property color errorMessageColor: "#DD5F5F"
|
|
|
|
property color tooltipBackgroundColor: "#DFECF2"
|
|
|
|
property color digitInputColor: "#6C7A87"
|
|
|
|
property color darkBlueColor: "#22334D"
|
|
property color darkGrayColor: "#4E6074"
|
|
property color grayColor: "#6C7A87"
|
|
property color lightGrayColor: "#EDEDED"
|
|
|
|
property color defaultTextColor: "#4E6074"
|
|
property color disableTextColor: "#9AABB5"
|
|
property int descriptionTextSize: 7
|
|
property int indicatorMessageTextSize: 7
|
|
property string defaultFont: "Noto Sans"
|
|
property int defaultFontPointSize: 10
|
|
property int title1FontPointSize: 50
|
|
property int title2FontPointSize: 20
|
|
property color titleColor: "#22334D"
|
|
|
|
property color mainPageRightPanelBackgroundColor: "#F9F9F9"
|
|
property color mainPageTitleColor: "#364860"
|
|
property int mainPageTitleSize: 15
|
|
|
|
property color searchBarFocusBorderColor: "#6C7A87"
|
|
property color contactListSearchBarColor: "#F9F9F9"
|
|
property color callRightPanelSearchBarBorderColor: "#EDEDED"
|
|
|
|
property color numericPadBackgroundColor: "#F9F9F9"
|
|
property color numericPadShadowColor: Qt.rgba(0.0, 0.0, 0.0, 0.1)
|
|
property int numericPadButtonTextSize: 15
|
|
property int numericPadButtonSubtextSize: 6
|
|
property color numericPadPressedButtonColor: "#EEF7F8"
|
|
|
|
property color groupCallButtonColor: "#EEF7F8"
|
|
property color launchCallButtonColor: "#4FAE80"
|
|
property color callCheckedButtonColor: "#9AABB5"
|
|
|
|
property color splitViewHandleColor: "#F9F9F9"
|
|
property color splitViewHoveredHandleColor: "#EDEDED"
|
|
|
|
property color ongoingCallWindowColor: "#000000"
|
|
property color ongoingCallBackgroundColor: "#2E3030"
|
|
property int ongoingCallElapsedTimeSize: 15
|
|
property int ongoingCallNameSize: 10
|
|
property int ongoingCallAddressSize: 6
|
|
property color callRightPanelBackgroundColor: "#F9F9F9"
|
|
|
|
property color defaultAvatarBackgroundColor: "#DFECF2"
|
|
|
|
property double dp: 1.0//0.66
|
|
}
|