emit rgba inside rgba for two args special

This commit is contained in:
ConnorSkees 2020-04-06 22:35:07 -04:00
parent b545c162f5
commit 203200ca4c

View File

@ -291,7 +291,7 @@ pub(crate) fn register(f: &mut HashMap<String, Builtin>) {
v if v.is_special_function() => {
let alpha = arg!(args, scope, super_selector, 1, "alpha");
return Ok(Value::Ident(
format!("rgb({}, {})", v, alpha),
format!("rgba({}, {})", v, alpha),
QuoteKind::None,
));
}
@ -308,7 +308,7 @@ pub(crate) fn register(f: &mut HashMap<String, Builtin>) {
v if v.is_special_function() => {
return Ok(Value::Ident(
format!(
"rgb({}, {}, {}, {})",
"rgba({}, {}, {}, {})",
color.red(),
color.green(),
color.blue(),