The standard Indigo Magic window uses generic classes.
<div class="window">
<div class="title-bar">
<div class="title-bar-text">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>
IRIX buttons are chunky with 3D bevels. Use the <button> tag.
<button>Standard</button>
<button class="default">Default</button>
<button disabled>Disabled</button>
Standard inputs and toggles with IRIX aesthetic.
<input type="text">
<label>
<input type="checkbox" checked> Checkbox
</label>
<label>
<input type="radio" name="ref" checked> Radio
</label>