Different Colorsets for different menus?

I am trying to apply different style to different menus based on this guide:

zensites.net/fvwm/guide/menu.html

Colorset 60 VGradient 64 2 #484848 50 #484848 50 #484848
Colorset 62 VGradient 64 2 #808080 50 #808080 50 #808080
Colorset 8 fg #ffffff, hi white, RootTransparent , Tint white 65
Colorset 9 fg #444348, bg #f1f1f1, sh #cbccd0, hi #57585c

MenuStyle * Hilight3DThin, PopupOffset +0 100, PopupDelay 100
MenuStyle * Font "xft:Verdona:bold:pixelsize=11:minspace=True"
MenuStyle * MenuColorset 62, HilightBack, ActiveColorset 60
MenuStyle * BorderWidth 1, TitleUnderlines1, SeparatorsLong, TrianglesSolid, Animation
MenuStyle * ItemFormat "%.2|%.5i%.5l%.5i%10.3>%2|"
MenuStyle "Utilities" MenuColorset 8, HilightBack, ActiveColorset 9


AddToMenu Utilities	"Fvwm functions"	Title 
+			"Move"		Move-or-Raise2
+			"Destroy"	Destroy
+			"Close"		Close

AddToMenu Window-Ops	"Move"		Move-or-Raise
+			"Resize"	Resize-or-Raise
+			"Raise"		Raise   	
+			"Lower"		Lower   	
+			"Iconify"	Iconify 	
+			"(Un)Stick"	Stick		
+			""		Nop     	
+			"Destroy"	Destroy 	
+			"Close"		Close	 

But the Fvwm functions menu still looks the same as the Move menu. What am I doin wrong?

There’s a difference between the menustyle name and the menu name. Look at the ChangeMenuStyle and CopyMenuStyle functions.
You might want something like:

CopyMenuStyle * Utilities ChangeMenuStyle Utilities Utilities MenuStyle Utilities MenuColorset 8, HilightBack, ActiveColorset 9

Another thing yuo might wat to take into concideration is the colorset numbers. Are you really using 63 colorsets? Becasue fvwm will allocate memory for all colorsets up to the highest number used which makes fvwm eat more memory than needed if you leave large holes in the range of colorsets you use.