scrimba
Space Travel Site
The design system
Color challenge
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

AboutCommentsNotes
Color challenge
Expand for more info
design-system.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
<title>Design system</title>
</head>
<body class="bg-dark">

<!-- CHALLENGE ----------------
1. Give the first div a light blue background and dark text color
2. Give the second div a white background and dark text color
3. Give the third div a light blue background with a 20% alpha value
--------------------------- -->

<div class="container">
<h1>Design system</h1>


<div class="" style="padding: 1rem">
light blue bg, with dark text
</div>

<div class="" style="padding: 1rem">
white bg, with dark text
</div>

<div class="" style="padding: 1rem">
light blue bg at 20% opacity and white text
</div>

</div>

<script src="index.pack.js"></script>
</body>
</html>
Console
/design-system.html
-4:06