tweak colors to be less bright

This commit is contained in:
Saas
2025-10-31 18:22:30 +01:00
parent 316e5b2845
commit b6696564f5

View File

@@ -14,17 +14,17 @@ namespace FlaxEditor.CustomEditors.Editors
/// <summary>
/// The X axis color.
/// </summary>
public static Color AxisColorX = new Color(1.0f, 0.0f, 0.02745f, 1.0f);
public static Color AxisColorX = new Color(0.8f, 0.0f, 0.027f, 1.0f);
/// <summary>
/// The Y axis color.
/// </summary>
public static Color AxisColorY = new Color(0.239215f, 1.0f, 0.047058f, 1.0f);
public static Color AxisColorY = new Color(0.239215f, 0.65f, 0.047058f, 1.0f);
/// <summary>
/// The Z axis color.
/// </summary>
public static Color AxisColorZ = new Color(0.0f, 0.0235294f, 1.0f, 1.0f);
public static Color AxisColorZ = new Color(0.0f, 0.0235294f, 0.9f, 1.0f);
/// <summary>
/// Custom editor for actor position property.