Skip to content

A warm 17-color colorscheme with soft colors for cozy coding.

License

Notifications You must be signed in to change notification settings

evanasse/chalet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Chalet - A warm colorscheme

#2e201e #A74D39 #616655 #F2A766 #D47D49 #8A4B53 #A67458 #A6B3BF
#5C403B #DF674C #8E947D #FFC786 #F49D69 #AA6B73 #C69478 #F2DDBC

Colors

Color Name ANSI Hex
#2E201E Black Black #2E201E
#A74D39 Dark red Red #A74D39
#616655 Dark green Green #616655
#F2A766 Dark yellow Yellow #F2A766
#D47D49 Dark orange Blue #D47D49
#8A4B53 Dark purple Magenta #8A4B53
#A67458 Dark brown Cyan #A67458
#ADADAD Light grey White #ADADAD
#5C403B Darker brown Light black #5C403B
#DF674C Light red Bright red #DF674C
#8E947D Light green Bright green #8E947D
#FFC786 Light yellow Bright yellow #FFC786
#F49D69 Light orange Bright blue #F49D69
#AA6B73 Light purple Bright magenta #AA6B73
#C69478 Light brown Bright cyan #C69478
#F2DDBC White Bright white #F2DDBC
#1E140D Background - #1E140D

App configs

[delta]
    syntax-theme = none
    light = false
    line-numbers = true
    minus-style = "#A74D39" normal
    minus-emph-style = "#2E201E" "#A74D39" bold
    line-numbers-minus-style = "#A74D39"
    plus-style = "#616655" normal
    plus-emph-style = "#F2DDBC" "#616655" bold
    line-numbers-plus-style = "#616655"
    line-numbers-left-style = "#5C403B"
    line-numbers-right-style = "#5C403B"
    line-numbers-zero-style = "#5C403B"

With Lazy.nvim:

{
    "evanasse/chalet",
    dependencies = { "rktjmp/lush.nvim" },
}

In wezterm.lua:

You'll have to make lua/chalet_colors/init.lua available for the Lua runtime of Wezterm.

-- Colors
local colors = require("chalet_colors")

config.color_scheme = "chalet"
config.color_schemes = {
    ["chalet"] = {
        background = colors.bg,
        foreground = colors.fg,
        brights = {
            colors.ansi.bright_black,
            colors.ansi.bright_red,
            colors.ansi.bright_green,
            colors.ansi.bright_yellow,
            colors.ansi.bright_blue,
            colors.ansi.bright_magenta,
            colors.ansi.bright_cyan,
            colors.ansi.bright_white,
        },
        ansi = {
            colors.ansi.black,
            colors.ansi.red,
            colors.ansi.green,
            colors.ansi.yellow,
            colors.ansi.blue,
            colors.ansi.magenta,
            colors.ansi.cyan,
            colors.ansi.white,
        },
    },
}

Acknowledgement

About

A warm 17-color colorscheme with soft colors for cozy coding.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages