43 lines
1.3 KiB
SCSS
43 lines
1.3 KiB
SCSS
|
/* ==========================================================================
|
||
|
Plum skin
|
||
|
========================================================================== */
|
||
|
|
||
|
/* Colors */
|
||
|
$background-color: #521477 !default;
|
||
|
$text-color: #fffd86 !default;
|
||
|
$primary-color: #c327ab !default;
|
||
|
$border-color: mix(#fff, $background-color, 20%) !default;
|
||
|
$code-background-color: mix(#000, $background-color, 15%) !default;
|
||
|
$code-background-color-dark: mix(#000, $background-color, 20%) !default;
|
||
|
$form-background-color: mix(#000, $background-color, 15%) !default;
|
||
|
$footer-background-color: mix(#000, $background-color, 25%) !default;
|
||
|
$link-color: $primary-color !default;
|
||
|
$link-color-hover: mix(#fff, $link-color, 25%) !default;
|
||
|
$link-color-visited: mix(#000, $link-color, 25%) !default;
|
||
|
$masthead-link-color: $text-color !default;
|
||
|
$masthead-link-color-hover: mix(#000, $text-color, 20%) !default;
|
||
|
$navicon-link-color-hover: mix(#000, $background-color, 30%) !default;
|
||
|
|
||
|
.author__urls.social-icons .fa,
|
||
|
.page__footer-follow .social-icons .fa {
|
||
|
color: inherit;
|
||
|
}
|
||
|
|
||
|
.page__content {
|
||
|
a,
|
||
|
a:visited {
|
||
|
color: inherit;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* next/previous buttons */
|
||
|
.pagination--pager {
|
||
|
color: $text-color;
|
||
|
background-color: $primary-color;
|
||
|
border-color: transparent;
|
||
|
|
||
|
&:visited {
|
||
|
color: $text-color;
|
||
|
}
|
||
|
}
|