1.0.3 • Published 5 years ago

rgb-to-uicolor v1.0.3

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

rgb-to-uicolor

Convert RGB color to UIColor

Install

npm install --save rgb-to-uicolor

Usage

import {rgbToUIColor}  from 'rgb-to-uicolor';

let rgbColor = {
  r: rgbRedValue,
  g: rgbGreenValue,
  b: rgbBlueValue
}

rgbToUIColor(rgbColor);
//=> {
  r: "UIColorRedValue",
  g: "UIColorGreenValue",
  b: "UIColorBlueValue"
  }
  
  //example
  
  let rgbColor = {
  r: 199,
  g: 46,
  b: 46
}

rgbToUIColor(rgbColor);
//=> {
  r: "0.78",
  g: "0,18",
  b: "0,18"
  }