diff --git a/src/art/genAI/clothesPromptPart.js b/src/art/genAI/clothesPromptPart.js
index c29e585b4effcc45a733a1c029b4518ea3420cd5..f9f37e724d30eae72d891b65f0d03a06b54b7c0a 100644
--- a/src/art/genAI/clothesPromptPart.js
+++ b/src/art/genAI/clothesPromptPart.js
@@ -111,8 +111,9 @@ const clothesPrompts = {
 		"positive": "(cheerleader outfit:1.1), skirt, thighs, crop top, navel, midriff",
 		"negative": "jeans, nude, pussy, nipples",
 	},
-	"clubslut netting": {  // Doesn't work well
-		"positive": "nude, fishnets, nipples, pussy",
+	"clubslut netting": {
+		"colors": ["light blue", "pink", "lime green"],
+		"positive": "rave clothing, lewd, transparent clothing, $color fishnet bodysuit, $color fishnet, choker",
 		"negative": "cloth, jeans, pants, corset",
 	},
 	"cutoffs and a t-shirt": {
@@ -494,11 +495,21 @@ App.Art.GenAI.ClothesPromptPart = class ClothesPromptPart extends App.Art.GenAI.
 		return prompt; // female default
 	}
 
+	colorReplacer(prompt, colors) {
+		if (colors && prompt.includes('$color')) {
+			const color = colors[Math.floor(Math.random() * colors.length)];
+			return prompt.replaceAll('$color', color)
+		}
+		return prompt;
+	}
+
 	/**
 	 * @returns {string}
 	 */
 	positive() {
-		return this.bodyPartReplacer(clothesPrompts[this.getClothes()].positive);
+		const basePrompt = clothesPrompts[this.getClothes()];
+		const coloredPrompt = this.colorReplacer(basePrompt.positive, basePrompt.colors)
+		return this.bodyPartReplacer(coloredPrompt);
 	}
 
 	/**