@unikue/ts-lang-utils
    Preparing search index...

    Function hexToRgb

    Utilities for color

    David Hsing

    • Returns the converted rgb color from the given hex color

      Parameters

      • Optionalhex: string

        The hex color to inspect

      Returns undefined | string

      the converted rgb color from the given hex color

      David Hsing

      hexToRgb('#fff');    // 'rgb(255, 255, 255)'
      hexToRgb('#ff0000'); // 'rgb(255, 0, 0)'