mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-24 21:39:24 +00:00
9374be5857
Fixes #670. Component spec based on https://www.notion.so/emizzle/Wallet-transaction-components-2003b78a8d0d41c4ab3d21eb2496fb20. Changes the current Select shared component to a model databound component. This means we can bind directly to `QAbstractListModel`'s coming from Nim instead of needing manipulating the data in to javascript objects. The changes to the Select component will be used for the upcoming Asset selector shared component.
33 lines
1.0 KiB
QML
33 lines
1.0 KiB
QML
import QtQuick 2.13
|
|
import "."
|
|
|
|
Theme {
|
|
property color white: "#FFFFFF"
|
|
property color white2: "#FCFCFC"
|
|
property color black: "#000000"
|
|
property color grey: "#EEF2F5"
|
|
property color lightBlue: "#ECEFFC"
|
|
property color blue: "#4360DF"
|
|
property color transparent: "#00000000"
|
|
property color darkGrey: "#939BA1"
|
|
property color lightBlueText: "#8f9fec"
|
|
property color darkBlue: "#3c55c9"
|
|
property color darkBlueBtn: "#5a70dd"
|
|
property color red: "#FF2D55"
|
|
property color lightRed: "#FFEAEE"
|
|
property color green: "#4EBC60"
|
|
|
|
property color background: white
|
|
property color border: grey
|
|
property color textColor: black
|
|
property color currentUserTextColor: white
|
|
property color secondaryBackground: lightBlue
|
|
property color inputBackground: grey
|
|
property color inputColor: black
|
|
property color modalBackground: white2
|
|
property color backgroundHover: grey
|
|
property color secondaryText: darkGrey
|
|
property color secondaryHover: Qt.rgba(0, 0, 0, 0.1)
|
|
property color danger: red
|
|
}
|