Change indentation to 4 spaces
This commit is contained in:
parent
e118f3882d
commit
cfca7157b9
165 changed files with 23146 additions and 23975 deletions
|
|
@ -11,32 +11,32 @@ ThemeManager::ThemeManager() {}
|
|||
QColor
|
||||
ThemeManager::themeColor(const QString &key) const
|
||||
{
|
||||
if (key == "Black")
|
||||
return QColor("#171919");
|
||||
if (key == "Black")
|
||||
return QColor("#171919");
|
||||
|
||||
else if (key == "BrightWhite")
|
||||
return QColor("#EBEBEB");
|
||||
else if (key == "FadedWhite")
|
||||
return QColor("#C9C9C9");
|
||||
else if (key == "MediumWhite")
|
||||
return QColor("#929292");
|
||||
else if (key == "BrightWhite")
|
||||
return QColor("#EBEBEB");
|
||||
else if (key == "FadedWhite")
|
||||
return QColor("#C9C9C9");
|
||||
else if (key == "MediumWhite")
|
||||
return QColor("#929292");
|
||||
|
||||
else if (key == "BrightGreen")
|
||||
return QColor("#1C3133");
|
||||
else if (key == "DarkGreen")
|
||||
return QColor("#577275");
|
||||
else if (key == "LightGreen")
|
||||
return QColor("#46A451");
|
||||
else if (key == "BrightGreen")
|
||||
return QColor("#1C3133");
|
||||
else if (key == "DarkGreen")
|
||||
return QColor("#577275");
|
||||
else if (key == "LightGreen")
|
||||
return QColor("#46A451");
|
||||
|
||||
else if (key == "Gray")
|
||||
return QColor("#5D6565");
|
||||
else if (key == "Red")
|
||||
return QColor("#E22826");
|
||||
else if (key == "Blue")
|
||||
return QColor("#81B3A9");
|
||||
else if (key == "Gray")
|
||||
return QColor("#5D6565");
|
||||
else if (key == "Red")
|
||||
return QColor("#E22826");
|
||||
else if (key == "Blue")
|
||||
return QColor("#81B3A9");
|
||||
|
||||
else if (key == "Transparent")
|
||||
return QColor(0, 0, 0, 0);
|
||||
else if (key == "Transparent")
|
||||
return QColor(0, 0, 0, 0);
|
||||
|
||||
return (QColor(0, 0, 0, 0));
|
||||
return (QColor(0, 0, 0, 0));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue