Options
All
  • Public
  • Public/Protected
  • All
Menu

Module color/hex2Rgb

Index

Type aliases

Functions

Type aliases

RgbColor

0.0.35 provide
RgbColor: FixedLengthArray<number, 3>

Functions

transformHexColorToRgb

0.0.35 provide
  • transformHexColorToRgb(hexColor: number | string): RgbColor
  • 将int 或者 string 类型的颜色转化成 RGB数组形式

    remarks

    如果想要其他形式颜色,可调用color.format进行格式转化

    example

    string 类型传入

    import { color } from 'onex-utils';
    const {transformHexColorToRgb} = color;
    transformHexColorToRgb('#fff'); // [255, 255, 255]
    
    example

    int 类型传入

    import { color } from 'onex-utils';
    const {transformHexColorToRgb} = color;
    transformHexColorToRgb(0xffffff); // [255, 255, 255]
    

    Parameters

    • hexColor: number | string

      string | int类型的颜色,例如 ‘#FFF’、0xeeeeee

    Returns RgbColor

    rgb RgbColor