summaryrefslogtreecommitdiff
path: root/_sass/common/classes/_text.scss
diff options
context:
space:
mode:
Diffstat (limited to '_sass/common/classes/_text.scss')
-rw-r--r--_sass/common/classes/_text.scss37
1 files changed, 0 insertions, 37 deletions
diff --git a/_sass/common/classes/_text.scss b/_sass/common/classes/_text.scss
deleted file mode 100644
index ac36726..0000000
--- a/_sass/common/classes/_text.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-@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();
-}