macro_rules! mix_blend_mode {
    (initial) => { ... };
    (inherit) => { ... };
    (unset) => { ... };
    (normal) => { ... };
    (multiply) => { ... };
    (screen) => { ... };
    (overlay) => { ... };
    (darken) => { ... };
    (lighten) => { ... };
    (color - dodge) => { ... };
    (color - burn) => { ... };
    (difference) => { ... };
    (exclusion) => { ... };
    (hue) => { ... };
    (saturation) => { ... };
    (color) => { ... };
    (luminosity) => { ... };
}