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
{{ message }}
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.
@valtron There are also problems using darken and lighten functions with named colors. For now, you could import this http://cl.ly/11012A021g0M1W0k331m and then use variables instead of named colors. i.e. background: @red;
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Example:
// less
@col: pink;
#foo { background-color: @col * 0.8; }
// output css
#foo { background-color: pink 0.8; }
// expected css
#foo { background-color: #CC99A2; }
The text was updated successfully, but these errors were encountered: