This reference demonstrates using standardized generic HTML elements with the Amiga theme.
Standardized window body content.
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Window Title</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">...</div>
</div>
<button>Normal Button</button>
<button class="default">Default Button</button>
<button disabled>Disabled</button>
<fieldset>
<legend>Legend</legend>
<input type="text">
<label><input type="checkbox" checked> Label</label>
<label><input type="radio" name="r" checked> Label</label>
</fieldset>