body {
  @include themed('colors') {
    // Text colors
    @include text-color-variant(".text-primary", t('primary-color-light'));

    @include text-color-variant(".text-gray", rgba($dark-color, 0.5));

    @include text-color-variant(".text-light", t('light-color'));

    @include text-color-variant(".text-default", t('font-color'));

    @include text-color-variant(".text-success", t('success-color'));

    @include text-color-variant(".text-warning", t('warning-color'));

    @include text-color-variant(".text-error", t('error-color'));

    @include text-color-variant(".text-violet", t('violet-light'));

    // Background colors
    @include bg-color-variant(".bg-primary", t('primary-color'));

    @include bg-color-variant(".bg-gray", rgba($dark-color, 0.5));

    @include bg-color-variant(".bg-success", t('success-color'));

    @include bg-color-variant(".bg-warning", t('warning-color'));

    @include bg-color-variant(".bg-error", t('error-color'));
  }
}
