M CHANGELOG.md => CHANGELOG.md +1 -1
@@ 15,7 15,7 @@
- Refactor seo.html include to DRY-up page image handling.
- Add support for setting what image is used by OpenGraph and Twitter via `page.header.og_image`. [#1316](https://github.com/mmistakes/minimal-mistakes/issues/1316)
- Fix the spelling of some product names in the author profile. [#1328](https://github.com/mmistakes/minimal-mistakes/pull/1328)
-- Add `aqua` and `neon` skins. [#1336](https://github.com/mmistakes/minimal-mistakes/pull/1336)
+- Add `aqua`, `neon`, and `plum` skins. [#1336](https://github.com/mmistakes/minimal-mistakes/pull/1336)
- Update **jekyll-toc** with heading classes fix. [#1337](https://github.com/mmistakes/minimal-mistakes/pull/1337)
- Remove `+` from Google+ author link to allow non-vanity URLs. [#1319]
M README.md => README.md +1 -1
@@ 38,7 38,7 @@ This theme comes in seven different skins (including the default one).
| --- | --- | --- |
|  |  |  |
-| `aqua` | `neon` | --- |
+| `aqua` | `neon` | `plum` |
| --- | --- | --- |
|  |  |  |
M _config.yml => _config.yml +1 -1
@@ 5,7 5,7 @@
# For technical reasons, this file is *NOT* reloaded automatically when you use
# `jekyll serve`. If you change this file, please restart the server process.
-minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "sunrise"
+minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
# Site Settings
locale : "en"
A _sass/minimal-mistakes/skins/_plum.scss => _sass/minimal-mistakes/skins/_plum.scss +42 -0
@@ 0,0 1,42 @@
+/* ==========================================================================
+ 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;
+ }
+}