Skip to content

Instantly share code, notes, and snippets.

@svgeesus
Created April 30, 2021 13:00
Show Gist options
  • Save svgeesus/e37b01c449283352482d05fae52b9452 to your computer and use it in GitHub Desktop.
Save svgeesus/e37b01c449283352482d05fae52b9452 to your computer and use it in GitHub Desktop.

CSS Color 5 syntactic forms example

For https://drafts.csswg.org/css-color-5/#color-mix

let color = new Color("plum");
let color2 = new Color("purple");
let mix= color.range(color2, {
    space: "lch", // interpolation space
    outputSpace: "srgb"
});
mix(.5); // midpoint
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment