use std::collections::BTreeMap; use super::Builtin; mod hsl; mod opacity; mod other; mod rgb; pub(crate) fn register(f: &mut BTreeMap) { hsl::register(f); opacity::register(f); other::register(f); rgb::register(f); }