Preliminary redesign of the UI. This has no major regression.

Signed-off-by: Adam Treat <treat.adam@gmail.com>
This commit is contained in:
Adam Treat
2024-03-20 11:09:59 -04:00
committed by AT
parent 0455b80b7f
commit f571e7e450
10 changed files with 499 additions and 389 deletions

View File

@@ -200,6 +200,17 @@ QtObject {
}
}
property color viewBarBackground: {
switch (MySettings.chatTheme) {
case "LegacyDark":
return blue950;
case "Dark":
return darkgray300;
default:
return gray300;
}
}
property color progressForeground: {
switch (MySettings.chatTheme) {
case "LegacyDark":
@@ -376,6 +387,39 @@ QtObject {
}
}
property color iconBackgroundViewBar: {
switch (MySettings.chatTheme) {
case "LegacyDark":
return blue200;
case "Dark":
return green400;
default:
return green700;
}
}
property color iconBackgroundViewBarToggled: {
switch (MySettings.chatTheme) {
case "LegacyDark":
return purple400;
case "Dark":
return accentColor;
default:
return black;
}
}
property color iconBackgroundViewBarHovered: {
switch (MySettings.chatTheme) {
case "LegacyDark":
return blue400;
case "Dark":
return green600;
default:
return green500;
}
}
property color slugBackground: {
switch (MySettings.chatTheme) {
case "LegacyDark":