// Text Ellipsis
@mixin text-ellipsis() {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

// Text Ellipsis
@mixin text-gray($opacity) {
  @include themed('colors') {
    color: rgba(t('font-color'), $opacity);
  }
}
