added light mode
This commit is contained in:
parent
5a39403bce
commit
604d394555
2 changed files with 31 additions and 39 deletions
|
@ -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.
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- # ~/setup -->
|
||||
|
||||
<!-- ## containers and virtualization -->
|
||||
<!-- docker is an integral part of my workflow, whether for isolating development environments or deploying applications. i use docker extensively for running microservices and experimenting with different tech stacks. beyond docker, i've dabbled in kubernetes for orchestrating larger containerized environments. -->
|
||||
|
||||
<!-- ## databases and backends -->
|
||||
<!-- for my projects, i often turn to postgresql for its robustness and feature set. i've also worked with supabase as a backend-as-a-service, leveraging its real-time capabilities for web apps. python is my go-to language for scripting and data analysis, with pytorch being my preferred library for deep learning tasks. -->
|
||||
|
||||
<!-- ## programming languages -->
|
||||
<!-- while i'm most comfortable with python, i've also spent time exploring nim, a language that strikes a balance between performance and expressiveness. it's a refreshing change from the heavier syntax of other languages and offers powerful metaprogramming capabilities. -->
|
||||
|
||||
<!-- ## daily drivers -->
|
||||
<!-- in addition to the above, i regularly use tools like tmux for terminal multiplexing, neovim as my text editor, and zsh as my shell. my workflow is heavily keyboard-driven, with custom shortcuts and scripts that streamline everything from launching applications to managing system resources. -->
|
||||
|
||||
<!-- ## misc -->
|
||||
<!-- from configuring nginx servers to tweaking systemd units, i've accumulated a fair share of knowledge in managing linux systems. i'm also familiar with the ins and outs of git for version control, and i contribute to open-source projects whenever i can. on the side, i've experimented with machine learning models, data visualization, and even some game development. -->
|
||||
|
||||
<!-- this setup isn't just about the tools—it's about creating an environment where i can think, create, and experiment without friction. if you're curious about anything, feel free to explore the repos linked above, or reach out for a chat. -->
|
||||
|
||||
|
|
|
@ -1,8 +1,35 @@
|
|||
|
||||
/* 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 {
|
||||
max-width: 60%;
|
||||
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue