mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Mid color is used for scrollbars it seems
This commit is contained in:
parent
2022775dd0
commit
2b24a978e1
3 changed files with 2 additions and 12 deletions
|
@ -205,11 +205,6 @@ TextField {
|
||||||
qproperty-labelColor: #caccd1;
|
qproperty-labelColor: #caccd1;
|
||||||
}
|
}
|
||||||
|
|
||||||
ScrollBar {
|
|
||||||
qproperty-handleColor: #2d3139;
|
|
||||||
qproperty-backgroundColor: #202228;
|
|
||||||
}
|
|
||||||
|
|
||||||
SideBarActions,
|
SideBarActions,
|
||||||
TopRoomBar
|
TopRoomBar
|
||||||
{
|
{
|
||||||
|
|
|
@ -236,11 +236,6 @@ TextInputWidget {
|
||||||
border-top: 1px solid #dcdcdc;
|
border-top: 1px solid #dcdcdc;
|
||||||
}
|
}
|
||||||
|
|
||||||
ScrollBar {
|
|
||||||
qproperty-handleColor: #ccc;
|
|
||||||
qproperty-backgroundColor: #efefef;
|
|
||||||
}
|
|
||||||
|
|
||||||
SideBarActions {
|
SideBarActions {
|
||||||
border: none;
|
border: none;
|
||||||
border-top: 1px solid #dcdcdc;
|
border-top: 1px solid #dcdcdc;
|
||||||
|
|
|
@ -111,7 +111,7 @@ UserSettings::applyTheme()
|
||||||
/*button*/ QColor("#333"),
|
/*button*/ QColor("#333"),
|
||||||
/*light*/ QColor(0xef, 0xef, 0xef),
|
/*light*/ QColor(0xef, 0xef, 0xef),
|
||||||
/*dark*/ QColor(220, 220, 220),
|
/*dark*/ QColor(220, 220, 220),
|
||||||
/*mid*/ QColor(0, 0xff, 0), // not used anywhere, this is for debugging
|
/*mid*/ QColor(110, 110, 110),
|
||||||
/*text*/ QColor("#333"),
|
/*text*/ QColor("#333"),
|
||||||
/*bright_text*/ QColor("#333"),
|
/*bright_text*/ QColor("#333"),
|
||||||
/*base*/ QColor("white"),
|
/*base*/ QColor("white"),
|
||||||
|
@ -129,7 +129,7 @@ UserSettings::applyTheme()
|
||||||
/*button*/ QColor(0xff, 0xff, 0xff),
|
/*button*/ QColor(0xff, 0xff, 0xff),
|
||||||
/*light*/ QColor("#caccd1"),
|
/*light*/ QColor("#caccd1"),
|
||||||
/*dark*/ QColor("#2d3139"),
|
/*dark*/ QColor("#2d3139"),
|
||||||
/*mid*/ QColor(0, 0xff, 0), // not used anywhere, this is for debugging
|
/*mid*/ QColor(110, 110, 110), // not used anywhere, this is for debugging
|
||||||
/*text*/ QColor("#caccd1"),
|
/*text*/ QColor("#caccd1"),
|
||||||
/*bright_text*/ QColor(0xff, 0xff, 0xff),
|
/*bright_text*/ QColor(0xff, 0xff, 0xff),
|
||||||
/*base*/ QColor("#2d3139"),
|
/*base*/ QColor("#2d3139"),
|
||||||
|
|
Loading…
Reference in a new issue