scrimba
Applied Accessibility
Avoid Colorblindness Issues by Carefully Choosing Colors that Convey Information
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

Avoid Colorblindness Issues by Carefully Choosing Colors that Convey Information
AboutCommentsNotes
Avoid Colorblindness Issues by Carefully Choosing Colors that Convey Information
Expand for more info
index.html
run
preview
console
<head>
<style>
button {
color: #33FF33;
background-color: #FFFF33;
font-size: 14px;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>Danger!</h1>
</header>
<button>Delete Internet</button>
</body>
Console
index.html
-0:57