diff --git a/seed/challenges/01-front-end-development-certification/html5-and-css.json b/seed/challenges/01-front-end-development-certification/html5-and-css.json index 6ec921957f..dc697a898e 100644 --- a/seed/challenges/01-front-end-development-certification/html5-and-css.json +++ b/seed/challenges/01-front-end-development-certification/html5-and-css.json @@ -4827,7 +4827,7 @@ "assert(code.match(/\\.red-text\\s*?{\\s*?color:\\s*?#FF0000\\s*?;\\s*?}/gi), 'message: Use the hex code for the color red instead of the word red.');", "assert($('.green-text').css('color') === 'rgb(0, 255, 0)', 'message: Give your h1 element with the text I am green! the color green.');", "assert(code.match(/\\.green-text\\s*?{\\s*?color:\\s*?#00FF00\\s*?;\\s*?}/gi), 'message: Use the hex code for the color green instead of the word green.');", - "assert($('.dodger-blue-text').css('color') === '#1E90FF', 'message: Give your h1 element with the text I am dodger blue! the color dodger blue.');", + "assert($('.dodger-blue-text').css('color') === 'rgb(30, 144, 255)', 'message: Give your h1 element with the text I am dodger blue! the color dodger blue.');", "assert(code.match(/\\.dodger-blue-text\\s*?{\\s*?color:\\s*?#1E90FF\\s*?;\\s*?}/gi), 'message: Use the hex code for the color dodger blue instead of the word dodgerblue.');", "assert($('.orange-text').css('color') === 'rgb(255, 165, 0)', 'message: Give your h1 element with the text I am orange! the color orange.');", "assert(code.match(/\\.orange-text\\s*?{\\s*?color:\\s*?#FFA500\\s*?;\\s*?}/gi), 'message: Use the hex code for the color orange instead of the word orange.');"