diff --git a/seed_data/coursewares.json b/seed_data/coursewares.json
index baf5986e28..72bf8f1b5d 100644
--- a/seed_data/coursewares.json
+++ b/seed_data/coursewares.json
@@ -162,7 +162,7 @@
"Here's how you would set the h2
element's text color to blue: <h2 style=\"color: blue\">cat photo app<h2>
"
],
"tests": [
- "expect($('h2')).to.have.css('color', '#ff0000');"
+ "expect($('h2')).to.have.css('color', 'rgb(255, 0, 0)');"
],
"challengeSeed": [
"
opening and closing curly braces
({
and }
) around each element's style. You also need to make sure your element's style is between the opening and closing style tags. Finally, be sure to add the semicolon to the end of each of the element's styles."
],
"tests": [
- "expect($('h2')).to.have.css('color', '#0000ff');"
+ "expect($('h2')).to.have.css('color', 'rgb(0, 0, 255)');"
],
"challengeSeed": [
"red-text
class, which you can attach to HTML elements by using the class=\"class\"
within the relevant element's opening tag."
],
"tests": [
- "expect($('h2')).to.have.css('color', '#ff0000');",
+ "expect($('h2')).to.have.css('color', 'rgb(255, 0, 0)');",
"expect($('h2')).to.have.class('red-text');"
],
"challengeSeed": [
@@ -235,9 +235,9 @@
"expect($('h1')).to.have.class('red-text');",
"expect($('h2')).to.have.class('red-text');",
"expect($('p')).to.have.class('red-text');",
- "expect($('h1')).to.have.css('color', '#ff0000');",
- "expect($('h2')).to.have.css('color', '#ff0000');",
- "expect($('p')).to.have.css('color', '#ff0000');"
+ "expect($('h1')).to.have.css('color', 'rgb(255, 0, 0)');",
+ "expect($('h2')).to.have.css('color', 'rgb(255, 0, 0)');",
+ "expect($('p')).to.have.css('color', 'rgb(255, 0, 0)');"
],
"challengeSeed": [
"