ym27
March 25, 2021, 10:23pm
1
Tell us what’s happening:
**Your code so far**
<style>
.red-text {
color: rgb(225, 0,0);
}
.orchid-text {
color: rgb(218, 112, 214);
}
.sienna-text {
color: rgb(160, 82, 45);
}
.blue-text {
color: rgb(0, 0, 225);
}
</style>
<h1 class="red-text">I am red!</h1>
<h1 class="orchid-text">I am orchid!</h1>
<h1 class="sienna-text">I am sienna!</h1>
<h1 class="blue-text">I am blue!</h1>
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36
.
Challenge: Use RGB to Mix Colors
Link to the challenge:
ym27
March 25, 2021, 10:25pm
2
this is what its telling me exactly. also sorry im new here . so forgive me if im using this website wrong.
Your h1
element with the text I am red!
should have the color
red.
You should use rgb
for the color red.
it says the same for the blue as well.
Roma
March 25, 2021, 10:35pm
3
ym27:
.red-text {
color: rgb(225, 0,0);
}
.orchid-text {
color: rgb(218, 112, 214);
}
.sienna-text {
color: rgb(160, 82, 45);
}
.blue-text {
color: rgb(0, 0, 225);
}
Revisit the lesson again and carefully look at the numbers.
Read each individual number aloud for what the lesson tells you and for what you have typed in.
Hint:
ym27
March 25, 2021, 10:38pm
4
omg thank you! im so stupid lol I’ve redone it multiple times and i wrote it wrong each time wth how… lol wow i feel dumb
but seriously thank you lol
1 Like
Roma
March 25, 2021, 10:38pm
5
No worries. Typo’s are the bane of developers.
1 Like
ym27
March 25, 2021, 10:44pm
6
Haha yes true… but also I’ve been doing this for about 5 hours now, so I think that means I should take a break lol
1 Like
system
Closed
September 25, 2021, 2:29am
8
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.