mahnunchik / gulp-responsive

gulp-responsive generates images at different sizes
https://npmjs.com/gulp-responsive
MIT License
502 stars 61 forks source link

Unable to parse background colors #86

Open retrocausal opened 6 years ago

retrocausal commented 6 years ago

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 commented 6 years ago

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.