Link Search Menu Expand Document

Avoid Colorblindness Issues by Carefully Choosing Colors that Convey Information

Summary

  • Using colors that are close on the color wheel is not recommended.

Final Code

<head>
  <style>
  button {
    color: #003366;
    background-color: #FFFF33;
    font-size: 14px;
    padding: 10px;
  }
  </style>
</head>
<body>
  <header>
    <h1>Danger!</h1>
  </header>
  <button>Delete Internet</button>
</body>