/// Get a value from $theme if it exists
///
/// @param {arglist} $args
@function theme($args...) {
  @if variable-exists('theme') and map-get-deep($theme, $args...) {
    @return map-get-deep($theme, $args...);
  }

  @else {
    @return ('theme', $args);
  }
}