1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

missing nvidia color

This commit is contained in:
bbedward
2025-08-21 14:36:24 -04:00
parent cbc14dddfe
commit bcd02d4e90
2 changed files with 4 additions and 2 deletions

View File

@@ -70,7 +70,8 @@ Singleton {
surfaceContainerHigh: getMatugenColor("surface_container_high", "#292b2f"),
error: "#F2B8B5",
warning: "#FF9800",
info: "#2196F3"
info: "#2196F3",
success: "#4CAF50"
}
} else {
return StockThemes.getThemeByName(currentTheme, isLightMode)
@@ -95,6 +96,7 @@ Singleton {
property color error: currentThemeData.error || "#F2B8B5"
property color warning: currentThemeData.warning || "#FF9800"
property color info: currentThemeData.info || "#2196F3"
property color success: currentThemeData.success || "#4CAF50"
property color primaryHover: Qt.rgba(primary.r, primary.g, primary.b, 0.12)
property color primaryHoverLight: Qt.rgba(primary.r, primary.g, primary.b, 0.08)