Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 606 Bytes

File metadata and controls

26 lines (19 loc) · 606 Bytes

Accent Colors

Use the accent-color property to style form controls with your branding color.

<form>
    <input type="checkbox" id="test-check" checked />
    <label for="test-check">this is a checkbox</label>
</form>
body {
  accent-color: #f5ad42;
}

image


Refs