You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the RGB value (the first 6 bits of the value) are the same, the RGBA value (8-bit value) is compressed to 5 bits by the compressor. @PureKrome
classProgram{staticstringCompressCSS(){varcss=@" a { background: #F9BE4486; color: #FFFFFF20; }";varcompressor=newCssCompressor();// The background value is correct.// The expected result of color is #FFFFFF20, and the actual result is #FFF20.varcompressedCSS=compressor.Compress(css);// a{background:#F9BE4486;color:#FFF20}returncompressedCSS;}}
If the RGB value (the first 6 bits of the value) are the same, the RGBA value (8-bit value) is compressed to 5 bits by the compressor. @PureKrome