diff --git a/src/Avalonia.Controls.ColorPicker/ColorPalettes/SixteenColorPalette.cs b/src/Avalonia.Controls.ColorPicker/ColorPalettes/SixteenColorPalette.cs
index f3abfdfd7f..c7431c166f 100644
--- a/src/Avalonia.Controls.ColorPicker/ColorPalettes/SixteenColorPalette.cs
+++ b/src/Avalonia.Controls.ColorPicker/ColorPalettes/SixteenColorPalette.cs
@@ -55,101 +55,22 @@ namespace Avalonia.Controls
///
public const int DefaultShadeIndex = 0;
- ///
- /// The index in the color palette of the 'White' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int WhiteIndex = 0;
-
- ///
- /// The index in the color palette of the 'Silver' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int SilverIndex = 1;
-
- ///
- /// The index in the color palette of the 'Gray' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int GrayIndex = 2;
-
- ///
- /// The index in the color palette of the 'Black' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int BlackIndex = 3;
-
- ///
- /// The index in the color palette of the 'Red' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int RedIndex = 4;
-
- ///
- /// The index in the color palette of the 'Maroon' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int MaroonIndex = 5;
-
- ///
- /// The index in the color palette of the 'Yellow' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int YellowIndex = 6;
-
- ///
- /// The index in the color palette of the 'Olive' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int OliveIndex = 7;
-
- ///
- /// The index in the color palette of the 'Lime' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int LimeIndex = 8;
-
- ///
- /// The index in the color palette of the 'Green' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int GreenIndex = 9;
-
- ///
- /// The index in the color palette of the 'Aqua' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int AquaIndex = 10;
-
- ///
- /// The index in the color palette of the 'Teal' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int TealIndex = 11;
-
- ///
- /// The index in the color palette of the 'Blue' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int BlueIndex = 12;
-
- ///
- /// The index in the color palette of the 'Navy' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int NavyIndex = 13;
-
- ///
- /// The index in the color palette of the 'Fuchsia' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int FuchsiaIndex = 14;
-
- ///
- /// The index in the color palette of the 'Purple' color.
- /// This index can correspond to multiple color shades.
- ///
- public const int PurpleIndex = 15;
+ private const int WhiteIndex = 0;
+ private const int SilverIndex = 1;
+ private const int GrayIndex = 2;
+ private const int BlackIndex = 3;
+ private const int RedIndex = 4;
+ private const int MaroonIndex = 5;
+ private const int YellowIndex = 6;
+ private const int OliveIndex = 7;
+ private const int LimeIndex = 8;
+ private const int GreenIndex = 9;
+ private const int AquaIndex = 10;
+ private const int TealIndex = 11;
+ private const int BlueIndex = 12;
+ private const int NavyIndex = 13;
+ private const int FuchsiaIndex = 14;
+ private const int PurpleIndex = 15;
///
public int ColorCount