# Callouts
# Usage
A callout is used to bring attention to a specific piece of information that would otherwise be difficult to see. This works best when the content is a paragraph or text content.
# Markup
<div class="callout">
<p>Callout text</p>
</div>
# Themes
Adding a theme class will change the color of the accent border. Remember to consider thoughtful use of color.
# Primary callout-primary
<div class="callout callout-primary">
<p>Callout Text</p>
</div>
# Secondary callout-secondary
<div class="callout callout-secondary">
<p>Callout Text</p>
</div>
# Accent/Notice callout-accent
or callout-notice
<div class="callout callout-accent">
<p>Callout Text</p>
</div>
# Caution callout-caution
<div class="callout callout-caution">
<p>Callout Text</p>
</div>
# Warning callout-warning
<div class="callout callout-warning">
<p>Callout Text</p>
</div>