.github
_data
_includes
_layouts
_sass
minimal-mistakes
skins
_air.scss
_aqua.scss
_contrast.scss
_dark.scss
_default.scss
_dirt.scss
_mint.scss
_neon.scss
_plum.scss
_sunrise.scss
vendor
_animations.scss
_archive.scss
_base.scss
_buttons.scss
_footer.scss
_forms.scss
_masthead.scss
_mixins.scss
_navigation.scss
_notices.scss
_page.scss
_print.scss
_reset.scss
_search.scss
_sidebar.scss
_syntax.scss
_tables.scss
_utilities.scss
_variables.scss
minimal-mistakes.scss
assets
docs
test
.editorconfig
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md
Gemfile
LICENSE.txt
README.md
Rakefile
_config.yml
banner.js
index.html
minimal-mistakes-jekyll.gemspec
package.json
screenshot-layouts.png
screenshot.png
staticman.yml

* Cleanup syntax highlighting styles * Replace hardcoded color values with [base16](http://chriskempson.com/projects/base16/) Sass variables * Harmonize padding between GFM code blocks and `{% highlight %}` code blocks * Improve readability of line numbers * Add longer code block example to test double digit line numbers * Adjust code block colors for specific skins
52 lines
1.3 KiB
SCSS
52 lines
1.3 KiB
SCSS
/* ==========================================================================
|
|
Contrast skin
|
|
========================================================================== */
|
|
|
|
/* Colors */
|
|
$text-color: #000 !default;
|
|
$muted-text-color: $text-color !default;
|
|
$primary-color: #ff0000 !default;
|
|
$border-color: mix(#fff, $text-color, 75%) !default;
|
|
$footer-background-color: #000 !default;
|
|
$link-color: #0000ff !default;
|
|
$masthead-link-color: $text-color !default;
|
|
$masthead-link-color-hover: $text-color !default;
|
|
$navicon-link-color-hover: mix(#fff, $text-color, 80%) !default;
|
|
|
|
/* contrast syntax highlighting (base16) */
|
|
$base00: #000000 !default;
|
|
$base01: #242422 !default;
|
|
$base02: #484844 !default;
|
|
$base03: #6c6c66 !default;
|
|
$base04: #918f88 !default;
|
|
$base05: #b5b3aa !default;
|
|
$base06: #d9d7cc !default;
|
|
$base07: #fdfbee !default;
|
|
$base08: #ff6c60 !default;
|
|
$base09: #e9c062 !default;
|
|
$base0a: #ffffb6 !default;
|
|
$base0b: #a8ff60 !default;
|
|
$base0c: #c6c5fe !default;
|
|
$base0d: #96cbfe !default;
|
|
$base0e: #ff73fd !default;
|
|
$base0f: #b18a3d !default;
|
|
|
|
.page__content {
|
|
.notice,
|
|
.notice--primary,
|
|
.notice--info,
|
|
.notice--warning,
|
|
.notice--success,
|
|
.notice--danger {
|
|
color: $text-color;
|
|
}
|
|
}
|
|
|
|
.page__footer {
|
|
color: #fff !important; // override
|
|
}
|
|
|
|
.page__footer-follow .social-icons .svg-inline--fa {
|
|
color: inherit;
|
|
}
|