@dragonspark/chroma-kit
    Preparing search index...

    Interface ColorChannel

    Represents a color channel within a defined structure. This interface is used to encapsulate all properties and information related to a color channel.

    Properties:

    • accessor: A unique identifier or key used to access this color channel.
    • name: The descriptive name of the color channel.
    • range: The valid range of values the color channel can hold, defined as a ChannelRange.
    • attributes: Bitmask derived from ChannelAttribute.
    interface ColorChannel {
        accessor: string;
        attributes: number;
        name: string;
        range: ChannelRange;
    }
    Index

    Properties

    accessor: string
    attributes: number
    name: string