Created
October 5, 2025 01:26
-
-
Save adrianvalenz/f374e60b12dfdd50da1c3ebb0e4aef24 to your computer and use it in GitHub Desktop.
decay color scheme wezterm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Decay color scheme | |
| config.colors = { | |
| -- Terminal ANSI colors | |
| ansi = { | |
| "#1c252c", -- black | |
| "#e05f65", -- red | |
| "#78dba9", -- green | |
| "#f1cf8a", -- yellow | |
| "#70a5eb", -- blue | |
| "#c68aee", -- magenta | |
| "#74bee9", -- cyan | |
| "#dee1e6", -- white | |
| }, | |
| brights = { | |
| "#384148", -- bright black | |
| "#fc7b81", -- bright red | |
| "#94f7c5", -- bright green | |
| "#ffeba6", -- bright yellow | |
| "#8cc1ff", -- bright blue | |
| "#e2a6ff", -- bright magenta | |
| "#90daff", -- bright cyan | |
| "#fafdff", -- bright white | |
| }, | |
| -- Basic terminal colors | |
| foreground = "#b6beca", | |
| background = "#171a1f", | |
| -- Cursor colors | |
| cursor_bg = "#dee1e6", | |
| cursor_fg = "#22262e", | |
| cursor_border = "#fafdff", | |
| -- Selection colors | |
| selection_fg = "#D9E0EE", | |
| selection_bg = "#575268", | |
| -- Scrollbar | |
| scrollbar_thumb = "#384148", | |
| -- Split panes | |
| split = "#22262e", | |
| -- Other colors | |
| compose_cursor = "#f1cf8a", | |
| visual_bell = "#384148", | |
| -- Indexed colors (16-255) | |
| indexed = { | |
| [16] = "#f1cf8a", | |
| [17] = "#dee1e6", | |
| }, | |
| -- Tab bar | |
| tab_bar = { | |
| background = "#22262e", | |
| inactive_tab_edge = "#384148", | |
| active_tab = { | |
| bg_color = "#70a5eb", | |
| fg_color = "#fafdff", | |
| intensity = "Normal", | |
| underline = "None", | |
| italic = false, | |
| strikethrough = false, | |
| }, | |
| inactive_tab = { | |
| bg_color = "#22262e", | |
| fg_color = "#fafdff", | |
| intensity = "Normal", | |
| underline = "None", | |
| italic = false, | |
| strikethrough = false, | |
| }, | |
| inactive_tab_hover = { | |
| bg_color = "#384148", | |
| fg_color = "#fafdff", | |
| intensity = "Normal", | |
| underline = "None", | |
| italic = false, | |
| strikethrough = false, | |
| }, | |
| new_tab = { | |
| bg_color = "#22262e", | |
| fg_color = "#fafdff", | |
| intensity = "Normal", | |
| underline = "None", | |
| italic = false, | |
| strikethrough = false, | |
| }, | |
| new_tab_hover = { | |
| bg_color = "#384148", | |
| fg_color = "#fafdff", | |
| intensity = "Normal", | |
| underline = "None", | |
| italic = true, | |
| strikethrough = false, | |
| }, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment