Prefix all theme display names with "Doki Theme: "

Groups all generated themes together in the Gitea theme picker.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-22 17:51:17 +00:00
parent 000599e191
commit ab4c9a6228
+2 -2
View File
@@ -58,8 +58,8 @@ export function loadTheme(definitionPath: string, dokiRepoRoot: string): ThemeCo
.join('-');
const displayName = variant
? `${def.group}: ${def.displayName} (${variant})`
: `${def.group}: ${def.displayName}`;
? `Doki Theme: ${def.group}: ${def.displayName} (${variant})`
: `Doki Theme: ${def.group}: ${def.displayName}`;
return {
internalName,