feat(tags): refactor preset tags to constants for better maintainability

This commit is contained in:
Will Miao
2025-09-05 09:27:45 +08:00
parent 29a05f6533
commit fb2b69b787
3 changed files with 113 additions and 27 deletions

View File

@@ -163,3 +163,10 @@ export const NODE_TYPE_ICONS = {
// Default ComfyUI node color when bgcolor is null
export const DEFAULT_NODE_COLOR = "#353535";
// Preset tag suggestions
export const PRESET_TAGS = [
'character', 'style', 'concept', 'clothing',
'poses', 'background', 'vehicle', 'buildings',
'objects', 'animal'
];