# Color Provides color information in HEX, RGB, and HSL formats. ## Type Definition ```graphql type Color { color: String rgb: String hsl: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | color | String | Color as a HEX string (e.g., #RRGGBB). | | rgb | String | Color as an RGB string (e.g., rgb(255, 255, 255)). | | hsl | String | Color as an HSL string (e.g., hsl(0, 0%, 100%)). | ## Relationships The `Color` type is used by `ProductTaxonomyValue` to provide multiple color representations. It appears in the `color`, `color2`, and `color3` fields of `ProductTaxonomyValue`, allowing products to be associated with multiple color values in different formats. ## Example ```graphql { color rgb hsl } ``` ## Implements This type does not implement any interfaces. ## Related Types - `ProductTaxonomyValue`