Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Chris Mills <chrisdavidmills@gmail.com>
  • Loading branch information
estelle and chrisdavidmills authored Sep 1, 2025
commit 99a9ea735c4ca2a446bacc385de1104c2dcaff7f
8 changes: 4 additions & 4 deletions files/en-us/web/css/color_value/color-mix/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ Choosing the correct color space is important for producing desired results. Giv
## Syntax

```css
/* polar color space */
/* Polar color space */
color-mix(in hsl, hsl(200 50 80), coral 80%)

/* rectangular color space */
/* Rectangular color space */
color-mix(in srgb, plum, #123456)
color-mix(in lab, plum 60%, #123456 50%)

/* custom color space */
/* Custom color space */
color-mix(in --swop5c, red, blue)

/* with hue interpolation method */
/* With hue interpolation method */
color-mix(in lch longer hue, hsl(200deg 50% 80%), coral)
```

Expand Down
Loading