~xdavidwu/xdavidwu.link

304d0f358160ab58f7ccc1bd03bf69ccb6e7981e — Michael Rose 4 years ago 0701843
Improve accessiblity of default skin by increasing color contrast
2 files changed, 6 insertions(+), 6 deletions(-)

M _sass/minimal-mistakes/_page.scss
M _sass/minimal-mistakes/_variables.scss
M _sass/minimal-mistakes/_page.scss => _sass/minimal-mistakes/_page.scss +3 -3
@@ 352,11 352,11 @@ body {

.taxonomy__title {
  margin-bottom: 0.5em;
  color: lighten($text-color, 60%);
  color: $muted-text-color;
}

.taxonomy__count {
  color: lighten($text-color, 50%);
  color: $muted-text-color;
}

.taxonomy__index {


@@ 389,7 389,7 @@ body {
.back-to-top {
  display: block;
  clear: both;
  color: lighten($text-color, 50%);
  color: $muted-text-color;
  font-size: 0.6em;
  text-transform: uppercase;
  text-align: right;

M _sass/minimal-mistakes/_variables.scss => _sass/minimal-mistakes/_variables.scss +3 -3
@@ 48,7 48,7 @@ $type-size-8: 0.625em !default; // ~10px
   ========================================================================== */

$gray: #7a8288 !default;
$dark-gray: mix(#000, $gray, 40%) !default;
$dark-gray: mix(#000, $gray, 50%) !default;
$darker-gray: mix(#000, $gray, 60%) !default;
$light-gray: mix(#fff, $gray, 50%) !default;
$lighter-gray: mix(#fff, $gray, 90%) !default;


@@ 57,7 57,7 @@ $background-color: #fff !default;
$code-background-color: #fafafa !default;
$code-background-color-dark: $light-gray !default;
$text-color: $dark-gray !default;
$muted-text-color: mix(#fff, $text-color, 35%) !default;
$muted-text-color: mix(#fff, $text-color, 20%) !default;
$border-color: $lighter-gray !default;
$form-background-color: $lighter-gray !default;
$footer-background-color: $lighter-gray !default;


@@ 103,7 103,7 @@ $youtube-color: #bb0000 !default;
$xing-color: #006567 !default;

/* links */
$link-color: mix(#000, $info-color, 15%) !default;
$link-color: mix(#000, $info-color, 20%) !default;
$link-color-hover: mix(#000, $link-color, 25%) !default;
$link-color-visited: mix(#fff, $link-color, 15%) !default;
$masthead-link-color: $primary-color !default;