gulp-responsive icon indicating copy to clipboard operation
gulp-responsive copied to clipboard

Unable to parse background colors

Open retrocausal opened this issue 7 years ago • 1 comments
trafficstars

Error: Unable to parse color from object: {"model":"rgb","color":[255,255,255],"valpha":1}

What does the config specify:

const bgcolor = color({
  r: 255,
  g: 255,
  b: 255,
  alpha: 0
});
//Somewhere in the pipeline
//common config parameters
{
      min: true,
      flatten: true,
      background: bgcolor
}

The above error, is regardless of specifying the alpha channel while defining a color. I am unsure if this is because of sharp though

retrocausal avatar Mar 02 '18 20:03 retrocausal

Oh I figured, I should not be using color, but only specify the color model

doing

{
background:{r:255,b:255,g:255,alpha:0}
}

doesn't throw an error anymore. However, the alpha just doesn't work.

retrocausal avatar Mar 02 '18 20:03 retrocausal