Accent color

Example

We will send you a news letter every week
HTML
<form>
  <fieldset>
    <label>
      Name
      <input name="name" placeholder="Name" autocomplete="name">
    </label>
    <label>
      Email
      <input name="email" placeholder="Email" autocomplete="email" aria-describedby="email-hint">
      <small id="email-hint">
        We’ll never share your email with anyone else.
      </small>
    </label>
    <label>
      <input type="checkbox" name="newsletter" aria-describedby="newsletter-hint" checked>
      Newsletter
    </label>
    <small id="newsletter-hint">
      We will send you a news letter every week
    </small>
    <label>
      Spelling proficiency (0 - 10)
      <input type="range" value="5" min="0" max="10">
    </label>
  </fieldset>
  <div class="actions">
    <button class="outline" type="reset">
      Reset
    </button>
    <button class="solid" type="submit">
      Submit
    </button>
  </div>
</form>