diff --git a/src/Avalonia.Controls.ColorPicker/ColorView/ColorViewTab.cs b/src/Avalonia.Controls.ColorPicker/ColorView/ColorViewTab.cs
new file mode 100644
index 0000000000..d8c7d5163c
--- /dev/null
+++ b/src/Avalonia.Controls.ColorPicker/ColorView/ColorViewTab.cs
@@ -0,0 +1,23 @@
+namespace Avalonia.Controls
+{
+ ///
+ /// Defines a specific tab (subview) within the .
+ ///
+ public enum ColorViewTab
+ {
+ ///
+ /// The components view with sliders and numeric input boxes.
+ ///
+ Components,
+
+ ///
+ /// The color palette view with a grid of colors and shades.
+ ///
+ Palette,
+
+ ///
+ /// The color spectrum view with a box/ring spectrum and sliders.
+ ///
+ Spectrum,
+ }
+}