May 5th 2026 - Things I Worked On

Made Blog menu link open in the same tab when inside a post

After adding the ability for external links to open in a new tab I realized that the link leading back to the main page of my blog was also opening in a new tab. I added this simple fix:

<a target="_self" href="./index.html">Blog</a>

Tried looking into mu4e on Emacs for email

I looked into it but it just seems too unstable and I don't want to break anything regarding my email.

Consolidated colors in Poker Equity Calculator's CSS

Some colors in the style.css of my Poker Equity Calculator are scattered throughout the file. I wanted to consolidate them all into the :root element and use variables.

Here are the super cool colors:

:root {
    /* Base Backgrounds */
    --bg-dark: #0a0a12;
    --bg-gradient-inner: #1a1a3a;
    --card-bg: rgba(25, 25, 40, 0.8);
    --input-bg: rgba(0, 0, 0, 0.4);

    /* Neon Accents */
    --neon-purple: #bc13fe;
    --neon-purple-dark: #7a10a1;
    --neon-purple-alpha: rgba(188, 19, 254, 0.1);
    --neon-purple-glow: rgba(188, 19, 254, 0.4);
    --neon-purple-glow-strong: rgba(188, 19, 254, 0.6);

    --neon-blue: #24d1ff;
    --neon-blue-alpha: rgba(36, 209, 255, 0.1);

    /* Status & Feedback */
    --error-red: #ff4b2b;
    --error-red-alpha: rgba(255, 75, 43, 0.2);
    --error-red-glow: rgba(255, 75, 43, 0.4);

    /* Text & Borders */
    --text-main: #e0e0ff;
    --text-pure: #ffffff;
    --text-muted: #888;
    --border-glow: rgba(188, 19, 254, 0.3);
    --border-muted: #555;

    /* Shadows */
    --shadow-purple: rgba(188, 19, 254, 0.2);
    --shadow-purple-inset: rgba(188, 19, 254, 0.1);
}