diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 19a06ff46788fa60d9edd514f58912ca4c36d808..d778f86f193204b5f95ba67dc1527b40555ca82c 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -17102,6 +17102,7 @@ window.rulesAssistantOptions = (function() {
 				["dyed red"],
 				["dyed green"],
 				["dyed blue"],
+				["dyed pink"],
 				["dyed gray"],
 				["tiger striped"],
 				["camouflage patterned"],
diff --git a/src/art/vector/Set_Colour_Skin_JS.tw b/src/art/vector/Set_Colour_Skin_JS.tw
index 604a7ae37bedeba70dfb84d0872f870825ba4261..e76362921f13e7a7e4961b848270a5338e13fe29 100644
--- a/src/art/vector/Set_Colour_Skin_JS.tw
+++ b/src/art/vector/Set_Colour_Skin_JS.tw
@@ -33,6 +33,10 @@ if (artSlave.skin == "camouflage patterned") {
    s.skinColour = "#5b8eb7";
    s.areolaStyle = "#7BA4C5";
    s.labiaStyle = "#F977A3";
+ } else if (artSlave.skin == "dyed pink") {
+   s.skinColour = "#fe62b0";
+   s.areolaStyle = "#fc45a1";
+   s.labiaStyle = "#fba2c0";
  } else if (artSlave.skin == "dyed gray") {
    s.skinColour = "#bdbdbd";
    s.areolaStyle = "#666666";
diff --git a/src/art/vector_revamp/vectorRevampedArtControlJS.tw b/src/art/vector_revamp/vectorRevampedArtControlJS.tw
index f1fdeb250dc8beb258dd3716677a5c68560a756a..f99537da100db3e91e843ef92a261c839d4e9a6f 100644
--- a/src/art/vector_revamp/vectorRevampedArtControlJS.tw
+++ b/src/art/vector_revamp/vectorRevampedArtControlJS.tw
@@ -168,7 +168,7 @@ class ArtStyleControl {
 			["almond-shaped", "#555555"],
 			["bright", "#555555"],
 			["teary", "#555555"],
-			["vacant", "#555555"]
+			["vacant", "#555555"],
 			/* these are not actually FreeCities canon, but like to appear in custom descriptions */
 			["brunette", "#8D4F21"],
 			["dark", "#463325"]
@@ -211,6 +211,7 @@ class ArtStyleControl {
 			["dyed red", "#b04040"],
 			["dyed green", "#A0C070"],
 			["dyed blue", "#5080b0"],
+			["dyed pink", "#ff4291"],
 			["dyed gray", "#171717"],
 			["tiger striped", "#e0d050"]
 		];
@@ -247,6 +248,7 @@ class ArtStyleControl {
 			["dyed red", "#C96D6D"],
 			["dyed green", "#B7CF8F"],
 			["dyed blue", "#7BA4C5"],
+			["dyed pink", "#fc45a1"],
 			["dyed gray", "#666666"],
 			["tiger striped", "#E7DF7D"]
 		];
@@ -283,6 +285,7 @@ class ArtStyleControl {
 			["dyed red", "#F977A3"],
 			["dyed green", "#F977A3"],
 			["dyed blue", "#F977A3"],
+			["dyed pink", "#fba2c0"],
 			["dyed gray", "#8C8C8C"],
 			["tiger striped", "#F977A3"]
 		];
@@ -320,6 +323,7 @@ class ArtStyleControl {
 			["dyed red", "#bc4949"],
 			["dyed green", "#A6C373"],
 			["dyed blue", "#5b8eb7"],
+			["dyed pink", "#fe62b0"],
 			["dyed gray", "#bdbdbd"],
 			["tiger striped", "#e2d75d"]
 		];
diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw
index aeff9c64c6a91ff7b7453ce66b750543591ced1f..174185ad0d8c53060075782580553550b57f4097 100644
--- a/src/js/rulesAssistantOptions.tw
+++ b/src/js/rulesAssistantOptions.tw
@@ -3183,6 +3183,7 @@ window.rulesAssistantOptions = (function() {
 				["dyed red"],
 				["dyed green"],
 				["dyed blue"],
+				["dyed pink"],
 				["dyed gray"],
 				["tiger striped"],
 				["camouflage patterned"],
diff --git a/src/uncategorized/salon.tw b/src/uncategorized/salon.tw
index 4b33d958cfc31b86f6f0f391fdfa0e50cd22d9db..63522b63afc5117c4a0c7d0752ac00e5ff91e2a2 100644
--- a/src/uncategorized/salon.tw
+++ b/src/uncategorized/salon.tw
@@ -408,7 +408,7 @@ Treat nails:
 <<set $lightenableSkin = ["natural", "dark", "dark olive", "black", "brown", "dark brown", "tanned"]>>
 <<set $bleachableSkin = ["natural", "lightened", "pale", "fair", "light"]>>
 <<set $darkenableSkin = ["natural", "lightened", "white", "fair", "pale", "light", "extremely pale", "light olive", "tanned", "brown", "dark brown"]>>
-<<set $dyedSkin = ["dyed red", "dyed green", "dyed blue", "dyed gray", "tiger striped", "camouflage patterned"]>>
+<<set $dyedSkin = ["dyed red", "dyed green", "dyed blue", "dyed pink", "dyed gray", "tiger striped", "camouflage patterned"]>>
 
 
 <br><br>
@@ -449,6 +449,7 @@ Dye or paint:
 [[Red|Salon][$activeSlave.skin = "dyed red",$cash -= $modCost]]
 | [[Green|Salon][$activeSlave.skin = "dyed green",$cash -= $modCost]]
 | [[Blue|Salon][$activeSlave.skin = "dyed blue",$cash -= $modCost]]
+| [[Pink|Salon][$activeSlave.skin = "dyed pink",$cash -= $modCost]]
 | [[Gray|Salon][$activeSlave.skin = "dyed gray",$cash -= $modCost]]
 | [[Tiger Stripes|Salon][$activeSlave.skin = "tiger striped",$cash -= $modCost]]
 | [[Camouflage|Salon][$activeSlave.skin = "camouflage patterned",$cash -= $modCost]]