File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -562,7 +562,7 @@ public static void ChangeMenuLanguage()
562562 public static void ChangeMenuTheme ( )
563563 {
564564 themeType ++ ;
565- if ( themeType > 54 )
565+ if ( themeType > 55 )
566566 {
567567 themeType = 1 ;
568568 }
@@ -1167,6 +1167,17 @@ public static void ChangeMenuTheme()
11671167 textColor = Color . white ;
11681168 textClicked = Color . white ;
11691169 break ;
1170+ case 55 : // e621 (for version 6.2.1)
1171+ bgColorA = new Color32 ( 1 , 73 , 149 , 255 ) ;
1172+ bgColorB = new Color32 ( 1 , 73 , 149 , 255 ) ;
1173+ buttonDefaultA = new Color32 ( 1 , 46 , 87 , 255 ) ;
1174+ buttonDefaultB = new Color32 ( 1 , 46 , 87 , 255 ) ;
1175+ buttonClickedA = new Color32 ( 0 , 37 , 74 , 255 ) ;
1176+ buttonClickedB = new Color32 ( 0 , 37 , 74 , 255 ) ;
1177+ titleColor = new Color32 ( 252 , 179 , 40 , 255 ) ;
1178+ textColor = Color . white ;
1179+ textClicked = Color . white ;
1180+ break ;
11701181 }
11711182 }
11721183
You can’t perform that action at this time.
0 commit comments