diff --git a/src/facilities/salon/salonPassage.js b/src/facilities/salon/salonPassage.js
index b78f34aecd986a313a2b0b7ad571d04d2ef83311..a30348b65dab29333b9358132c7921cdae4f839f 100644
--- a/src/facilities/salon/salonPassage.js
+++ b/src/facilities/salon/salonPassage.js
@@ -281,13 +281,10 @@ App.UI.salon = function(slave, cheat = false) {
 		let comment = [];
 
 		if (cheat) {
-			options.addOption(`${His} natural skin color is`, "origSkin", slave).showTextBox()
-				.addValueList([["Pure White", "pure white"], ["Ivory", "ivory"], ["White", "white"], ["Extremely Pale", "extremely pale"],
-					["Very Pale", "very pale"], ["Pale", "pale"], ["Extremely Fair", "extremely fair"], ["Very Fair", "very fair"],
-					["Fair", "fair"], ["Light", "light"], ["Light Olive", "light olive"], ["Tan", "tan"], ["Olive", "olive"], ["Bronze", "bronze"],
-					["Dark Olive", "dark olive"], ["Dark", "dark"], ["Light Beige", "light beige"], ["Beige", "beige"],
-					["Dark Beige", "dark beige"], ["Light Brown", "light brown"], ["Brown", "brown"], ["Dark Brown", "dark brown"],
-					["Black", "black"], ["Ebony", "ebony"], ["Pure Black", "pure black"]]).pulldown();
+			option = options.addOption(`${His} natural skin color is`, "origSkin", slave).showTextBox().pulldown();
+			for (const skin of App.Medicine.Modification.naturalSkins) {
+				option.addValue(capFirstChar(skin), skin);
+			}
 		}
 
 		let option = options.addOption(`${His} skin is ${slave.skin}.`, "skin", slave);