hammerspoon2-docs
    Preparing search index...

    Class HSColor

    Bridge type for working with colors in JavaScript

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Update this color's value. If this color is bound to a UI element, the canvas re-renders automatically.

      Parameters

      • value: string | HSColor

        A hex color string (e.g. "#FF0000") or another HSColor object

      Returns void

    • Create a color from a hex string

      Parameters

      • hex: string

        Hex string (e.g. "#FF0000" or "FF0000")

      Returns HSColor

      An HSColor object

    • Create a color from a named system color

      Parameters

      • name: string

        Name of the system color (e.g. "red", "blue", "systemBlue")

      Returns HSColor

      An HSColor object

    • Create a color from RGB values

      Parameters

      • r: number

        Red component (0.0-1.0)

      • g: number

        Green component (0.0-1.0)

      • b: number

        Blue component (0.0-1.0)

      • a: number

        Alpha component (0.0-1.0)

      Returns HSColor

      An HSColor object