diff --git a/src/Artemis.Core/ColorScience/Quantization/ColorSwatch.cs b/src/Artemis.Core/ColorScience/Quantization/ColorSwatch.cs
index 16dd769b3..602f3d480 100644
--- a/src/Artemis.Core/ColorScience/Quantization/ColorSwatch.cs
+++ b/src/Artemis.Core/ColorScience/Quantization/ColorSwatch.cs
@@ -1,4 +1,5 @@
-using SkiaSharp;
+using System.Text;
+using SkiaSharp;
namespace Artemis.Core.ColorScience;
@@ -36,4 +37,14 @@ public readonly record struct ColorSwatch
/// The component.
///
public SKColor DarkMuted { get; init; }
+
+ ///
+ /// Override the record ToString method,
+ /// so we get a cleaner datamodel viewer
+ ///
+ ///
+ public override string? ToString()
+ {
+ return base.ToString();
+ }
}
\ No newline at end of file