Skip to content

Instantly share code, notes, and snippets.

@adrianvalenz
Created October 5, 2025 01:26
Show Gist options
  • Select an option

  • Save adrianvalenz/f374e60b12dfdd50da1c3ebb0e4aef24 to your computer and use it in GitHub Desktop.

Select an option

Save adrianvalenz/f374e60b12dfdd50da1c3ebb0e4aef24 to your computer and use it in GitHub Desktop.

Revisions

  1. adrianvalenz created this gist Oct 5, 2025.
    104 changes: 104 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,104 @@
    -- 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,
    },
    },
    }