Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix mistakes in the blog post about color spaces #673

Merged
merged 1 commit into from
Sep 23, 2022
Merged
Changes from all commits
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
3 changes: 2 additions & 1 deletion source/blog/034-request-for-comments-color-spaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ downsides:

Color spaces solve all of these problems. Now not every color has a red, green,
and blue channel (which can be interpreted as hue, saturation, and lightness).
Instead, a every color has a specific *color space* which specifies which
Instead, every color has a specific *color space* which specifies which
channels it has. For example, the color `oklch(80% 50% 90deg)` has `oklch` as
its color space, `80%` lightness, `50%` chroma, and `90deg` hue.

Expand All @@ -42,6 +42,7 @@ defines Sassified versions of all the color functions in [CSS Color Level
4][color-4].

[a proposal for how to handle color spaces in Sass]: https://github.com/sass/sass/blob/main/proposal/color-4-new-spaces.md
[color-4]: https://www.w3.org/TR/css-color-4/

### Rules of Thumb

Expand Down