Skip to content

Commit 1fd607a

Browse files
committed
Fix dark color setting
1 parent beb7cae commit 1fd607a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

RainbowMod/RainbowModuleSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public string FoxColorLightHex {
4545
[SettingIgnore]
4646
public string FoxColorDarkHex {
4747
get {
48-
return (0x00FFFFFF & FoxColorDark.PackedValue).ToString("X6");
48+
return FoxColorLight.R.ToString("X2") + FoxColorLight.G.ToString("X2") + FoxColorLight.B.ToString("X2");
4949
}
5050
set {
5151
if (string.IsNullOrEmpty(value))

0 commit comments

Comments
 (0)