diff --git a/src/Avalonia.Visuals/Media/Color.cs b/src/Avalonia.Visuals/Media/Color.cs
index a37463a0f0..c7439b5bf6 100644
--- a/src/Avalonia.Visuals/Media/Color.cs
+++ b/src/Avalonia.Visuals/Media/Color.cs
@@ -19,22 +19,22 @@ namespace Avalonia.Media
}
///
- /// Gets or sets the Alpha component of the color.
+ /// Gets the Alpha component of the color.
///
public byte A { get; }
///
- /// Gets or sets the Red component of the color.
+ /// Gets the Red component of the color.
///
public byte R { get; }
///
- /// Gets or sets the Green component of the color.
+ /// Gets the Green component of the color.
///
public byte G { get; }
///
- /// Gets or sets the Blue component of the color.
+ /// Gets the Blue component of the color.
///
public byte B { get; }