Sha256: 26db80d5f5b9a7b54ce07de0771e28c6b92161989a10856934f750bd31846858

Contents?: true

Size: 681 Bytes

Versions: 3

Compression:

Stored size: 681 Bytes

Contents

@mixin text-light {
  color: $text-color-theme-light;
  h1, h2, h3 {
    color: $text-color-theme-light-d;
  }
  h4, h5 {
    color: $text-color-theme-light;
  }
  h6 {
    color: $text-color-theme-light-l;
  }
  a:not(.button) {
    @include link-colors($text-color-theme-light, $main-color-1);
  }
}
@mixin text-dark {
  color: $text-color-theme-dark;
  h1, h2, h3 {
    color: $text-color-theme-dark-d;
  }
  h4, h5 {
    color: $text-color-theme-dark;
  }
  h6 {
    color: $text-color-theme-dark-l;
  }
  a:not(.button) {
    @include link-colors($text-color-theme-dark, $main-color-1);
  }
}

.text--light {
  @include text-light();
}
.text--dark {
  @include text-dark();
}

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
jekyll-text-theme-fork-2.2.6 _sass/common/classes/_text.scss
jekyll-text-theme-2.2.6 _sass/common/classes/_text.scss
jekyll-text-theme-2.2.5 _sass/common/classes/_text.scss