craftzdog / solarized-osaka.nvim

🏯 A clean, dark Neovim theme written in Lua, with support for lsp, treesitter and lots of plugins.
Apache License 2.0
608 stars 26 forks source link

Zellij colorscheme work in tandem with your tmux colorscheme #14

Closed shastenm76 closed 6 months ago

shastenm76 commented 6 months ago

Hi there, I really like your colorscheme. The thing is that I often use tmux inside of zellij. Anyway, I pretty much copy/pasted your tmux color scheme, and then matched the Zellij colorscheme to it. Either example will work equally well. Anyway, I thought I would share it. I am totally rocking your colorscheme in alacritty, nvim, dmenu, dwm, tmux, and now zellij. Have a nice day. Thanks, Shasten -- @the_jr_dev (Twitter)

// Osaka colorscheme for Zellij
// hexidecimal code
theme { 
    solarized-osaka {
        fg "#fdf6e3"
        bg "#2e3440"
        black "#2e3440"
        red "#002b36"
        green "#7aa2f7"
        yellow "#b58900"
        blue "#7aa2f7"
        magenta "#d33682"
        cyan "#2aa198"
        white "#eee8d5"
        orange "#cb4b16"
    }
}

// rgb code
theme { 
    solarized-osaka {
        fg 253 246 227
        bg 46 52 64
        black 46 52 64
        red 0 43 54
        green 122 162 247
        yellow 181 137 0
        blue 122 162 247
        magenta 211 54 130
        cyan 42 161 152
        white 238 232 213
        orange 203 75 22
    }
}

theme "solarized-osaka"
craftzdog commented 6 months ago

Cool, thanks for sharing