I have these basic colors
@_orange: #f4a534;
@_red: #ff0000;
@_green-dark: #328e3e;
@_green: #54bb62;
and I would like to use less functions
lighten() , darken(), saturate() ,mix()
to generate this color #ffe082
out of @_orange ,
how can I know the output color and what I need to do to produce this color with these functions ?
Thanks !