sbt / sbt-less

Other
43 stars 39 forks source link

alpha colors corrupted #146

Open thisVioletHydra opened 2 months ago

thisVioletHydra commented 2 months ago

before

body {
 color: #0000 !important;
 background-color: #0000; 
}

after

body {
  color: #000 0 !important;
  background-color: #000 0;
}

help 🗿

mkurz commented 2 months ago

Which version of sbt-less are you using? I think this might be a problem in less.js itself.

thisVioletHydra commented 2 months ago

Which version of sbt-less are you using? I think this might be a problem in less.js itself.

addSbtPlugin("com.github.sbt" % "sbt-less" % "2.0.0")

mkurz commented 1 month ago

@thisVioletHydra could you meanwhile figure out what's going on?

thisVioletHydra commented 1 month ago

@thisVioletHydra could you meanwhile figure out what's going on?

less not understand alpha hex i writhed new convertor for my project : #0000 to rgba(0,0,0,0) and all working again