mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
Updated to new theme of TeXt
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
@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();
|
||||
}
|
||||
Reference in New Issue
Block a user