Skip to content

Instantly share code, notes, and snippets.

@bjarneo
Created October 24, 2025 07:08
Show Gist options
  • Select an option

  • Save bjarneo/d8e1ff03125d60fa3fdd219d014d03a1 to your computer and use it in GitHub Desktop.

Select an option

Save bjarneo/d8e1ff03125d60fa3fdd219d014d03a1 to your computer and use it in GitHub Desktop.
Mushroom theme
{
"name": "Mushroom",
"timestamp": 1761289460452,
"palette": {
"wallpaper": "",
"colors": [
"#0F0517",
"#F15166",
"#44B2DF",
"#FA9671",
"#868acf",
"#cb97ce",
"#90a9e4",
"#E7B4D3",
"#704a91",
"#fca2ae",
"#8ed4f1",
"#ffd7c8",
"#c6c8eb",
"#ebd4ed",
"#d8e2f7",
"#fdf9fc"
],
"lightMode": false,
"appOverrides": {}
}
}
@bjarneo
Copy link
Author

bjarneo commented Oct 24, 2025

mushroom

@bjarneo
Copy link
Author

bjarneo commented Oct 24, 2025

nvim

return {
    {
        "bjarneo/aether.nvim",
        name = "aether",
        priority = 1000,
        opts = {
            disable_italics = false,
            colors = {
                -- Monotone shades (base00-base07)
                base00 = "#0F0517", -- Default background
                base01 = "#704a91", -- Lighter background (status bars)
                base02 = "#0F0517", -- Selection background
                base03 = "#704a91", -- Comments, invisibles
                base04 = "#E7B4D3", -- Dark foreground
                base05 = "#fdf9fc", -- Default foreground
                base06 = "#fdf9fc", -- Light foreground
                base07 = "#E7B4D3", -- Light background

                -- Accent colors (base08-base0F)
                base08 = "#F15166", -- Variables, errors, red
                base09 = "#fca2ae", -- Integers, constants, orange
                base0A = "#FA9671", -- Classes, types, yellow
                base0B = "#44B2DF", -- Strings, green
                base0C = "#90a9e4", -- Support, regex, cyan
                base0D = "#868acf", -- Functions, keywords, blue
                base0E = "#cb97ce", -- Keywords, storage, magenta
                base0F = "#ffd7c8", -- Deprecated, brown/yellow
            },
        },
        config = function(_, opts)
            require("aether").setup(opts)
            vim.cmd.colorscheme("aether")

            -- Enable hot reload
            require("aether.hotreload").setup()
        end,
    },
    {
        "LazyVim/LazyVim",
        opts = {
            colorscheme = "aether",
        },
    },
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment