using UnityEngine; public static class ColorManipulation { public static Color GetRandomColor() => new(Random.value, Random.value, Random.value); }