Compare commits
No commits in common. "bbe5ba99b3672497e6a2c9a8828fc420a48b3feb" and "b322aaf0a9f4ba4e9e1800038c746e72a4ce7faf" have entirely different histories.
bbe5ba99b3
...
b322aaf0a9
11 changed files with 34 additions and 81 deletions
|
@ -59,7 +59,6 @@ exclude:
|
||||||
- .gitignore
|
- .gitignore
|
||||||
- .jekyll-cace/
|
- .jekyll-cace/
|
||||||
- .sass-cache/
|
- .sass-cache/
|
||||||
- .direnv/
|
|
||||||
- flake.nix
|
- flake.nix
|
||||||
- flake.lock
|
- flake.lock
|
||||||
- gemset.nix
|
- gemset.nix
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
---
|
|
||||||
layout: default
|
|
||||||
title: Note
|
|
||||||
date: "2024-08-30 22:20"
|
|
||||||
---
|
|
||||||
|
|
||||||
Endlich daheim nach dem beschissesten Urlaub ever.
|
|
||||||
|
|
||||||
Dank Mietwagen ohne Rückfahrt in überfrachtetem COVID Bus und Zug.
|
|
||||||
Wir wollen ja niemanden anstecken, nech?
|
|
||||||
|
|
||||||
Aber ging diesmal echt schnell vorbei, leider aber nicht bei allen in der Familie.
|
|
||||||
|
|
||||||
Ich bin immer noch genervt.
|
|
|
@ -1,13 +0,0 @@
|
||||||
---
|
|
||||||
layout: default
|
|
||||||
title: Note
|
|
||||||
date: "2024-09-12 12:02"
|
|
||||||
---
|
|
||||||
|
|
||||||
pushed some buttons on this site. The color theme is now based on [Everforest](https://github.com/sainnhe/everforest), the theme I use on my desktop everwhere. It's just the perfect fit this time.
|
|
||||||
|
|
||||||
I've also switched the typeface to [Berkely Mono](https://berkeleygraphics.com/typefaces/berkeley-mono/). Which I want to switch to on the desktop as well. But that needs some nix sourcery to figure out.
|
|
||||||
|
|
||||||
You might see remainders in [the CSS](/assets/new.css) that I tested [Departure Mono](https://www.departuremono.com/). But that too much on its own. Even for me. I left it for now, I wnat to see how it looks like on headings and code blocks only.
|
|
||||||
|
|
||||||
Now only that logo needs some adaption.
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -2,62 +2,45 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/* Light Mode - Everforest Theme */
|
/* Light Mode */
|
||||||
--backgroundColor: #fdf6e3; /* background */
|
--backgroundColor: #EFF1F5; /* froth */
|
||||||
--textColor: #5c6a72; /* foreground */
|
--textColor: #4C4F69; /* text */
|
||||||
--secondaryTextColor: #7c8377; /* gray2 */
|
--secondaryTextColor: #565A6E; /* overlay2 */
|
||||||
--mutedTextColor: #9da9a0; /* gray1 */
|
--mutedTextColor: #727585; /* overlay1 */
|
||||||
--subtleBackgroundColor: #f3ece5; /* surface */
|
--subtleBackgroundColor: #E6E9EF; /* surface2 */
|
||||||
--heartedBackgroundColor: #e67e80; /* red */
|
--heartedBackgroundColor: #F5E0DC; /* peach */
|
||||||
--selectionBackgroundColor: #a7c080; /* green */
|
--selectionBackgroundColor: #A6E3A1; /* green */
|
||||||
--linkColor: #7fbbb3; /* aqua */
|
--linkColor: #89B4FA; /* blue */
|
||||||
--borderColor: #dfc7a1; /* light yellow */
|
--borderColor: #D9E0EE; /* crust */
|
||||||
--hrColor: #a9b1a1; /* gray3 */
|
--hrColor: #ABAEC6; /* mantle */
|
||||||
--activeColor: #d699b6; /* pink */
|
--activeColor: #F28FAD; /* pink */
|
||||||
--langBackgroundColor: #eee8d5; /* surface1 */
|
--langBackgroundColor: #DCE0EA; /* surface1 */
|
||||||
--langShadowColor: transparent;
|
--langShadowColor: transparent;
|
||||||
--logoColor: #a7c080; /* green */
|
--logoColor: #B8C0E0; /* lavender */
|
||||||
--photoBackground: #e9e8d5; /* surface0 */
|
--photoBackground: #E9ECF2; /* surface0 */
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
:root {
|
:root {
|
||||||
/* Dark Mode - Everforest Theme */
|
/* Dark Mode */
|
||||||
--backgroundColor: #2b3339; /* background */
|
--backgroundColor: #1E1E2E; /* base */
|
||||||
--textColor: #d3c6aa; /* foreground */
|
--textColor: #CDD6F4; /* text */
|
||||||
--secondaryTextColor: #a7c080; /* green */
|
--secondaryTextColor: #A6ADC8; /* overlay2 */
|
||||||
--mutedTextColor: #868d80; /* gray2 */
|
--mutedTextColor: #88909F; /* overlay1 */
|
||||||
--subtleBackgroundColor: #404a51; /* surface */
|
--subtleBackgroundColor: #313244; /* surface2 */
|
||||||
--heartedBackgroundColor: #e67e80; /* red */
|
--heartedBackgroundColor: #913C3C; /* red */
|
||||||
--selectionBackgroundColor: #3a494e; /* dark green */
|
--selectionBackgroundColor: #223249; /* blue darker */
|
||||||
--linkColor: #83c092; /* aqua */
|
--linkColor: #89B4FA; /* blue */
|
||||||
--borderColor: #454e58; /* dark yellow */
|
--borderColor: #414559; /* crust */
|
||||||
--hrColor: #5c6a72; /* gray3 */
|
--hrColor: #4C4F69; /* mantle */
|
||||||
--activeColor: #d699b6; /* pink */
|
--activeColor: #ABE9B3; /* green */
|
||||||
--langBackgroundColor: #323c41; /* surface1 */
|
--langBackgroundColor: #2A2A3C; /* surface1 */
|
||||||
--langShadowColor: #00000033;
|
--langShadowColor: #00000033;
|
||||||
--logoColor: #83c092; /* green */
|
--logoColor: #6E6C7E; /* lavender darker */
|
||||||
--photoBackground: #2f383e; /* surface0 */
|
--photoBackground: #24273A; /* surface0 */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: "Departure Mono";
|
|
||||||
src: url('fonts/DepartureMono-Regular.eot');
|
|
||||||
src: url('fonts/DepartureMono-Regular.eot') format('embedded-opentype'),
|
|
||||||
url('fonts/DepartureMono-Regular.woff2') format('woff2'),
|
|
||||||
url('fonts/DepartureMono-Regular.woff') format('woff');
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: "Berkeley Mono";
|
|
||||||
src: url('fonts/BerkeleyMono-Regular.otf');
|
|
||||||
src: url('fonts/BerkeleyMono-Regular.otf') format('opentype'),
|
|
||||||
url('fonts/BerkeleyMono-Regular.woff') format('woff'),
|
|
||||||
url('fonts/BerkeleyMono-Regular.woff2') format('woff2'),
|
|
||||||
url('fonts/BerkeleyMono-Regular.ttf') format('truetype');
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: var(--backgroundColor);
|
background: var(--backgroundColor);
|
||||||
color: var(--textColor);
|
color: var(--textColor);
|
||||||
|
@ -69,7 +52,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
body, kbd {
|
body, kbd {
|
||||||
font-family: "Berkeley Mono", system-ui, sans-serif;
|
font-family: system-ui, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@ -97,12 +80,11 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6, .font {
|
h1, h2, h3, h4, h5, h6, .font {
|
||||||
font-family: 'Berkeley Mono', sans-serif;
|
font-family: 'Readex Pro', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plain {
|
.plain {
|
||||||
// font-family: system-ui, sans-serif
|
font-family: system-ui, sans-serif
|
||||||
font-family: 'Berkeley Mono', sans-serif;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
@ -274,8 +256,7 @@ hr {
|
||||||
}
|
}
|
||||||
|
|
||||||
article {
|
article {
|
||||||
//font-family: system-ui, sans-serif;
|
font-family: system-ui, sans-serif;
|
||||||
font-family: 'Berkeley Mono', sans-serif;
|
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue