sbt-less
sbt-less copied to clipboard
alpha colors corrupted
before
body {
color: #0000 !important;
background-color: #0000;
}
after
body {
color: #000 0 !important;
background-color: #000 0;
}
help 🗿
Which version of sbt-less are you using? I think this might be a problem in less.js itself.
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")
@thisVioletHydra could you meanwhile figure out what's going on?
@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