added descriptions for matugen scheme types

This commit is contained in:
Sridou
2025-10-23 23:19:10 +05:30
parent d5e1557a30
commit 9565e32280
2 changed files with 12 additions and 3 deletions

View File

@@ -497,7 +497,16 @@
},
"matugen-scheme-type": {
"label": "Matugen scheme type",
"description": "Choose the color scheme generation algorithm for Matugen."
"description": {
"scheme-content": "Derives colors that closely match the underlying image`",
"scheme-expressive": "Vibrant palette with playful saturation",
"scheme-fidelity": "High-fidelity palette that preserves source hues",
"scheme-fruit-salad": "Colorful mix of bright contrasting accents",
"scheme-monochrome": "Minimal palette built around a single hue",
"scheme-neutral": "Muted palette with subdued, calming tones",
"scheme-rainbow": "Diverse palette spanning the full spectrum",
"scheme-tonal-spot": "Balanced palette with focused accents"
}
}
},
"dark-mode": {

View File

@@ -256,10 +256,10 @@ ColumnLayout {
}
}
// Matugen Scheme Type Selection
// Matugen Scheme Type Selection [Descriptions sourced from DankMaterialShell]
NComboBox {
label: I18n.tr("settings.color-scheme.color-source.matugen-scheme-type.label")
description: I18n.tr("settings.color-scheme.color-source.matugen-scheme-type.description")
description: I18n.tr("settings.color-scheme.color-source.matugen-scheme-type.description." + Settings.data.colorSchemes.matugenSchemeType)
enabled: Settings.data.colorSchemes.useWallpaperColors
opacity: Settings.data.colorSchemes.useWallpaperColors ? 1.0 : 0.6
visible: Settings.data.colorSchemes.useWallpaperColors