diff --git a/content/setup/_index.md b/content/setup/_index.md index 6b670b8..07b6756 100644 --- a/content/setup/_index.md +++ b/content/setup/_index.md @@ -20,11 +20,6 @@ I have been running linux since 2015 there are many more distros that I have tried for a brief period, but in most cases the only notable difference is the package manager. -### interested in trying - -- [gentoo](https://gentoo.org): a linux distribution known for it's complexity and the fact that one has to compile everything from scratch. -- [opensuse](https://opensuse.org): said to be very robust, with a very good installation process. - [here](https://git.sr.ht/~aethrvmn/nixconfig) you can find my current config files. ## version control @@ -45,26 +40,3 @@ I am also self hosting my own cloud using [nextcloud](https://nextcloud.com), ru ## workflow my editor of choice is [helix](https://helix-editor.com), which essentially is vim with better defaults. In all of my distros, I use [zsh](https://zsh.org) as my shell, and I use [zellij](https://zellij.dev) as a terminal multiplexer. - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/css/style.css b/static/css/style.css index 771d571..75eef81 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,7 +1,34 @@ - -html{ - background-color: #2d2a2e; - color: #f7f6f3; +/* dark mode */ +@media (prefers-color-scheme: dark) { + html{ + background-color: #2d2a2e; + color: #f7f6f3; + } + a { + color: #ac9c6d; + } + header { + border-bottom: 2px dotted #f7f6f3; + } + header a { + color: #f7f6f3; + } +} +/* light mode */ +@media (prefers-color-scheme: light) { + html{ + background-color: #f7f6f3; + color: #2d2a2e; + } + a { + color: #846b1f; + } + header { + border-bottom: 2px dotted #2d2a2e; + } + header a { + color: #2d2a2e; + } } body { @@ -37,7 +64,6 @@ ul { } a { - color: #ac9c6d; text-decoration: none; } @@ -47,7 +73,6 @@ a:hover { /* Adjust background at your leisure! */ header { - border-bottom: 2px dotted #f7f6f3; position: relative; width: 100%; height: 1.75rem; @@ -74,14 +99,9 @@ header nav { } header a { - color: #f7f6f3; line-height: 1.75rem; padding: 0 0.5rem } -header a:hover, -header .current a { - color: #f7f6f3 -} footer { text-align: center;