// ==========================================================================
// Base Type
// ==========================================================================

$headers: 'h1, h2, h3, h4, h5, h6';
$a-tags: 'a, a:visited';
$a-tags-hover: 'a:active, a:hover';

#{$headers} {
  text-transform: uppercase;
}

#{$a-tags} {
  color: if(variable-exists(anchor-text-color), $anchor-text-color, '#222');
}

#{$a-tags-hover} {
  color: if(variable-exists(anchor-text-hover-color), $anchor-text-hover-color, '#000');
}
