Experiment with color schemes, minor style tweaks

This commit is contained in:
timvisee 2019-07-01 12:44:25 +02:00
parent 159ee5fdce
commit 70d6c14e21
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
5 changed files with 61 additions and 14 deletions

View File

@ -0,0 +1,13 @@
// Inspired by: base16 atelier dune
// https://github.com/atelierbram/base16-atelier-schemes
$light-text: #202020;
$dark-text: #a6a28c;
$background: #20201d;
$background-darker: darken($background, 4%);
$background-border: darken($background, 8%);
$header-color: #6684e1;
$link-color: #ae9513;
$link-color-hover: lighten($link-color, 15%);
$logo-color: #fff;
$logo-color-hover: $link-color-hover;

View File

@ -0,0 +1,13 @@
// Inspired by: monokai
// https://github.com/kevinsawicki/monokai
$light-text: #202020;
$dark-text: #ccc;
$background: #282828;
$background-darker: darken($background, 4%);
$background-border: darken($background, 8%);
$header-color: #66D9EF;
$link-color: #A6E22E;
$link-color-hover: #FD971F;
$logo-color: #fff;
$logo-color-hover: $link-color-hover;

View File

@ -0,0 +1,10 @@
$light-text: #202020;
$dark-text: #ccc;
$background: #212931;
$background-darker: darken($background, 4%);
$background-border: darken($background, 8%);
$header-color: #BEA38C;
$link-color: $header-color;
$link-color-hover: lighten($link-color, 15%);
$logo-color: #fff;
$logo-color-hover: $link-color;

View File

@ -1,14 +1,13 @@
$light-text: #202020;
$dark-text: #ccc;
$background: #212931;
$dark-text: #a6a28c;
$background: #20201d;
$background-darker: darken($background, 4%);
$background-border: darken($background, 8%);
$header-color: #BEA38C;
$link-color: $header-color;
$header-color: #e4ad7d;
$link-color: #ae9513;
$link-color-hover: lighten($link-color, 15%);
$logo-color: #fff;
$logo-color-hover: $link-color;
$logo-color-hover: $link-color-hover;
// Setup the function in your functions or helpers files, wherever you keep these bits.
@function headings($from:1, $to:6) {
@ -48,6 +47,10 @@ body {
#{headings(1,6)} {
font-family: "Zilla Slab", "Open Sans", X-LocaleSpecific, sans-serif;
color: $header-color;
a {
color: $header-color;
}
}
h1 {
@ -69,6 +72,7 @@ h4 {
a {
color: $link-color;
transition: color 0.2s ease-in-out;
outline: 0;
&:hover {
color: $link-color-hover;
@ -99,6 +103,7 @@ body > header .logo {
overflow: visible;
white-space: nowrap;
text-decoration: none;
user-select: none;
// TODO: update these!
transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out, background-color 0.2s ease-in-out, opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
@ -119,8 +124,9 @@ body > header .logo:hover {
color: $logo-color-hover !important;
}
body > header .logo:active {
background-color: rgba($logo-color-hover, 0.2) !important;
border-color: $logo-color-hover !important;
color: $logo-color-hover !important;
background-color: rgba($logo-color-hover, 0.2) !important;
}
main {
@ -131,6 +137,14 @@ main {
box-shadow: 0 0 10px 5px rgba($background-border, 0.4);
}
main .muted {
color: darken($dark-text, 25%);
}
main .meta {
font-family: "Zilla Slab", "Open Sans", X-LocaleSpecific, sans-serif;
}
content {
padding: 2.5em 3em;
background: $background;
@ -147,13 +161,6 @@ content > #{headings(1,6)} {
border-bottom: 1px solid $background-border;
}
content .muted {
color: darken($dark-text, 25%);
}
content .meta {
font-family: "Zilla Slab", "Open Sans", X-LocaleSpecific, sans-serif;
}
sidebar {
width: 20em;
padding: 2.5em 1.5em;

View File

@ -91,6 +91,10 @@
<h1>Tags</h1>
<p>...</p>
</section>
<span class="muted">
Copyright &copy; {{ config.title }} {{ now() | date(format="%Y") }}
</span>
</sidebar>
</main>
{% endblock content %}