From 33b528b22555a619b192a4620a623ef682709b0e Mon Sep 17 00:00:00 2001 From: Kris Koishigawa Date: Mon, 20 Dec 2021 16:36:38 +0900 Subject: [PATCH] fix: add outro message to final CSS color markers step --- .../step-094.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-094.md b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-094.md index ab7fbbde2c..ccaee43c2d 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-094.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-094.md @@ -9,6 +9,8 @@ dashedName: step-94 Finally, for the blue marker's `box-shadow` property, replace the named color with the `hsla` function. Use the values `223` for hue, `59%` for saturation, `31%` for lightness, and `0.8` for the alpha channel. +And with that, your color markers set is complete! Well done. + # --hints-- Your `.blue` CSS rule should have a `box-shadow` shorthand property and with the value `0 0 20px 0 hsla(223, 59%, 31%, 0.8)`.