Skip to main content

Color

The <sdpi-color> component provides a styled wrapper of <input type="color">.

Example​

Property Inspector HTML
<sdpi-item label="Color">
<sdpi-color setting="selected_color"></sdpi-color>
</sdpi-item>

Result​

A color picker input in the Stream Deck property inspector using the sdpi-color web component

value

The value of <sdpi-color> is represented as a hex string.

{
"selected_color": "#00aaff"
}

Configuration​

The component supports the following configuration.

NameTypeDescription
defaultstringThe default value; shown when the persisted value is undefined.
disabledbooleanDetermines whether the input is disabled.
valuestringThe value of the component, and the persisted setting.

Persistence​

The value of the component can be automatically persisted to the Stream Deck with the following configuration.

NameTypeDescription
globalbooleanWhen present, the value will be persisted to the global settings.
settingstringThe path of the property where the value should be persisted in the settings.
setting

The setting represents the path of a property. If required, this path can denote a nested property within the settings, e.g. if the setting were foo.bar.prop, the value would be saved to:

{
"foo": {
"bar": {
"prop": <value>
}
}
}