Checkboxes, radios, a toggle and a select. Checked and selected states use the brand indigo, keeping the green reserved for the one spark.
<Checkbox defaultChecked>Send me occasional updates</Checkbox>
<Radio name="plan" defaultChecked>Monthly</Radio>
<Radio name="plan">Yearly</Radio>
<Toggle defaultChecked label="Email notifications" />
<Select
options={['Monthly', 'Quarterly', 'Yearly']}
defaultValue="Monthly"
/>