@spectrum-web-components/color-wheel
v1.12.1
Published
An `<sp-color-wheel>` allows users to visually select the hue of a color on a circular track. It's commonly used together with other color components to create comprehensive color selection interfaces.
Readme
Overview
An <sp-color-wheel> allows users to visually select the hue of a color on a circular track. It's commonly used together with other color components to create comprehensive color selection interfaces.
Usage
yarn add @spectrum-web-components/color-wheelImport the side effectful registration of <sp-color-wheel> via:
import '@spectrum-web-components/color-wheel/sp-color-wheel.js';When looking to leverage the ColorWheel base class as a type and/or for extension purposes, do so via:
import { ColorWheel } from '@spectrum-web-components/color-wheel';Anatomy
The color wheel consists of several key parts:
- A circular track displaying the full spectrum of hues
- A draggable handle that indicates the current hue selection
- Accessible labels for screen readers
- Optional custom gradient slot for advanced styling
<sp-color-wheel></sp-color-wheel>Custom Gradient
⚠️ Deprecated Feature
The custom gradient functionality has been deprecated and is no longer supported. While the gradient slot may still be present in the component's code, it is broken and will not work as intended.
If you previously relied on custom gradients for the color wheel, you should:
- Use the default color wheel appearance
- Consider alternative approaches for custom styling
- Remove any existing custom gradient implementations
Note: Even if you find the gradient slot in the component's source code, this feature is non-functional and should not be used in new implementations.
Options
Properties
The color wheel supports several properties for configuration:
Value (Hue)
The value property controls the hue angle of the color wheel (0-360 degrees). This represents the position of the handle on the circular track and determines the hue component of the displayed color.
<sp-color-wheel value="180"></sp-color-wheel>Color Values
The color wheel supports a wide variety of color formats for setting and getting color values:
<div style="display: flex; gap: 16px;">
<sp-color-wheel color="#7277b5"></sp-color-wheel>
<sp-color-wheel color="hsl(96, 84.00%, 49.00%)"></sp-color-wheel>
<sp-color-wheel color="red"></sp-color-wheel>
</div>Step Size
The step attribute controls the increment of hue adjustment when using keyboard navigation. It defines how many degrees the hue changes with each arrow key press:
<div style="display: flex; gap: 16px;">
<sp-color-wheel step="1" label="Fine Control (1° per key)"></sp-color-wheel>
<sp-color-wheel
step="10"
label="Medium Control (10° per key)"
></sp-color-wheel>
<sp-color-wheel
step="45"
label="Coarse Control (45° per key)"
></sp-color-wheel>
</div>The step size affects keyboard navigation:
- Regular arrow keys move by the step value
- Shift + arrow keys move by 10× the step value
- Choose your step size based on your use case:
- step="1": Precise color selection, best for professional design tools
- step="10": Balanced control, good for general use
- step="45": Quick selection between major hues, ideal for simple color pickers
Label
Provide a custom aria-label for accessibility:
<sp-color-wheel label="Select color hue"></sp-color-wheel>Direction
The color wheel supports both left-to-right and right-to-left layouts:
<sp-color-wheel dir="rtl"></sp-color-wheel>Tab Index
The tabIndex property controls the tab order of the color wheel within the page. This follows the standard HTML tabindex attribute behavior:
<div style="display: flex; gap: 16px;">
<div style="text-align: center;">
<div style="font-weight: bold; margin-bottom: 8px;">Default Tab Order</div>
<sp-color-wheel></sp-color-wheel>
</div>
<div style="text-align: center;">
<div style="font-weight: bold; margin-bottom: 8px;">Skip in Tab Order</div>
<sp-color-wheel tabindex="-1"></sp-color-wheel>
</div>
<div style="text-align: center;">
<div style="font-weight: bold; margin-bottom: 8px;">Custom Tab Order</div>
<sp-color-wheel tabindex="5"></sp-color-wheel>
</div>
</div>Note: See the general documentation about the HTML tabindex property for detailed information about tab order behavior.
Custom Sizing
An <sp-color-wheel>'s size can be customized appropriately for its context. By default, the size is 192 px.
Using Inline Styles
You can set custom dimensions using inline styles. For a perfect circle, ensure width and height are the same:
<sp-color-wheel style="width: 300px; height: 300px;"></sp-color-wheel>Using Mod Tokens
The component exposes CSS custom properties for consistent theming. Both --mod-colorwheel-width and --mod-colorwheel-height should be set to the same value to maintain a perfect circle:
<sp-color-wheel
style="--mod-colorwheel-width: 250px; --mod-colorwheel-height: 250px;"
></sp-color-wheel>Note: The CSS internally reuses the width value for both dimensions, but both mod tokens are exposed for flexibility in custom implementations.
States
Disabled
A color wheel in a disabled state shows that an input exists, but is not available in that circumstance. This can be used to maintain layout continuity and communicate that the wheel may become available later.
<sp-color-wheel disabled></sp-color-wheel>Focused
The color wheel manages its focused state automatically, providing visual feedback during keyboard navigation:
<sp-color-wheel focused></sp-color-wheel>Behaviors
Color Formatting
When using the color elements, use el.color to access the color property, which should manage itself in the color format supplied. If you supply a color in rgb() format, el.color should return the color in rgb() format, as well.
Please note for the following formats: HSV, HSVA, HSL, HSLA
When using the HSL or HSV formats, and a color's value (in HSV) is set to 0, or its luminosity (in HSL) is set to 0 or 1, the hue and saturation values may not be preserved by the element's color property. This is detailed in the colorjs documentation. Separately, the element's value property is directly managed by the hue as represented in the interface.
Pointer Interactions
The color wheel supports both mouse and touch interactions:
- Click: Jump to a specific hue on the wheel
- Drag: Continuously adjust hue while dragging around the wheel
- Touch: Full touch support for mobile devices
Focus Management
The color wheel automatically manages focus for keyboard accessibility, ensuring proper focus indication and keyboard operability.
Accessibility
The <sp-color-wheel> is rendered with appropriate ARIA attributes to ensure accessibility for screen readers and keyboard navigation.
Keyboard Navigation
The color wheel supports comprehensive keyboard interaction:
ARIA Attributes
The component provides comprehensive ARIA support:
- Role: Uses native
input[type="range"]with implicit "slider" role - Label: Customizable via the
labelproperty (defaults to "hue") - Value Text: Announces the current hue value in degrees with proper internationalization
- Orientation: Implicitly circular, supporting both LTR and RTL layouts
Screen Reader Support
The component provides meaningful announcements for assistive technologies:
- Current hue value announced in degrees (e.g., "180 degrees")
- Internationalized number formatting based on user's locale
- Clear indication of the control's purpose through proper labeling
Mobile Accessibility
The color wheel is fully accessible on mobile devices with:
- Touch-friendly interaction areas
- Proper focus management for mobile screen readers
