2
0
mirror of synced 2025-02-16 08:37:08 +00:00

fix(Theme): Updated userCustomizationColors list per designs

This commit is contained in:
Igor Sirotin 2022-06-13 17:43:59 +03:00
parent b816643e2d
commit 6fb1cdad81
4 changed files with 16 additions and 43 deletions

View File

@ -14,18 +14,7 @@ Column {
property int selectedColorIndex: 0 property int selectedColorIndex: 0
property string selectedColor: "" property string selectedColor: ""
property var model:[ StatusColors.colors['black'], property var model: Theme.palette.userCustomizationColors
StatusColors.colors['grey'],
StatusColors.colors['blue2'],
StatusColors.colors['purple'],
StatusColors.colors['cyan'],
StatusColors.colors['violet'],
StatusColors.colors['red2'],
StatusColors.colors['yellow'],
StatusColors.colors['green2'],
StatusColors.colors['moss'],
StatusColors.colors['brown'],
StatusColors.colors['brown2'] ]
signal colorSelected(color color) signal colorSelected(color color)
@ -43,6 +32,7 @@ Column {
columns: 6 columns: 6
rowSpacing: 16 rowSpacing: 16
columnSpacing: 32 columnSpacing: 32
Repeater { Repeater {
model: root.model model: root.model
delegate: StatusColorRadioButton { delegate: StatusColorRadioButton {

View File

@ -147,21 +147,6 @@ ThemePalette {
miscColor11: getColor('yellow2') miscColor11: getColor('yellow2')
miscColor12: getColor('green6') miscColor12: getColor('green6')
userCustomizationColors: [
"#AAC6FF",
"#887AF9",
"#51D0F0",
"#D37EF4",
"#FA6565",
"#FFCA0F",
"#93DB33",
"#10A88E",
"#AD4343",
"#EAD27B",
"silver", // update me when figma is ready
"darkgrey", // update me when figma is ready
]
identiconRingColors: ["#000000", "#726F6F", "#C4C4C4", "#E7E7E7", "#FFFFFF", "#00FF00", identiconRingColors: ["#000000", "#726F6F", "#C4C4C4", "#E7E7E7", "#FFFFFF", "#00FF00",
"#009800", "#B8FFBB", "#FFC413", "#9F5947", "#FFFF00", "#A8AC00", "#009800", "#B8FFBB", "#FFC413", "#9F5947", "#FFFF00", "#A8AC00",
"#FFFFB0", "#FF5733", "#FF0000", "#9A0000", "#FF9D9D", "#FF0099", "#FFFFB0", "#FF5733", "#FF0000", "#9A0000", "#FF9D9D", "#FF0099",

View File

@ -145,21 +145,6 @@ ThemePalette {
miscColor11: getColor('brown2') miscColor11: getColor('brown2')
miscColor12: getColor('green5') miscColor12: getColor('green5')
userCustomizationColors: [
"#2946C4",
"#887AF9",
"#51D0F0",
"#D37EF4",
"#FA6565",
"#FFCA0F",
"#7CDA00",
"#26A69A",
"#8B3131",
"#9B832F",
"silver", // update me when figma is ready
"darkgrey", // update me when figma is ready
]
identiconRingColors: ["#000000", "#726F6F", "#C4C4C4", "#E7E7E7", "#FFFFFF", "#00FF00", identiconRingColors: ["#000000", "#726F6F", "#C4C4C4", "#E7E7E7", "#FFFFFF", "#00FF00",
"#009800", "#B8FFBB", "#FFC413", "#9F5947", "#FFFF00", "#A8AC00", "#009800", "#B8FFBB", "#FFC413", "#9F5947", "#FFFF00", "#A8AC00",
"#FFFFB0", "#FF5733", "#FF0000", "#9A0000", "#FF9D9D", "#FF0099", "#FFFFB0", "#FF5733", "#FF0000", "#9A0000", "#FF9D9D", "#FF0099",

View File

@ -90,7 +90,20 @@ QtObject {
property color miscColor11 property color miscColor11
property color miscColor12 property color miscColor12
property var userCustomizationColors: [] property var userCustomizationColors: [
getColor('black', 0.8),
getColor('grey'),
getColor('blue2'),
getColor('purple'),
getColor('cyan'),
getColor('violet'),
getColor('red2'),
getColor('yellow'),
getColor('green2'),
getColor('moss'),
getColor('brown'),
getColor('brown2'),
]
property var identiconRingColors: [] property var identiconRingColors: []