scrimba
CSS variables
Your first variable - CSS Variables tutorial
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Your first variable - CSS Variables tutorial
AboutCommentsNotes
Your first variable - CSS Variables tutorial
Expand for more info
index.css
run
preview
console
html, body {
background: #ffeead;
color: #ff6f69;
}

h1, p {
color: #ff6f69;
}

#navbar a {
color: #ff6f69;
}

.item {
background: #ffcc5c;
}

button {
background: #ff6f69;
color: #ffcc5c;
}
Console
index.html
-4:54