summaryrefslogtreecommitdiff
path: root/dot-config/wezterm/colors/kanso-zen.lua
blob: 1dcc325559e81b903265dbd019607477f3bf182a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
local config = {
    force_reverse_video_cursor = true,
    colors = {
        foreground = "#C5C9C7",
        background = "#090E13",

        cursor_bg = "#090E13",
        cursor_fg = "#C5C9C7",
        cursor_border = "#C5C9C7",

        selection_fg = "#C5C9C7",
        selection_bg = "#22262D",

        scrollbar_thumb = "#22262D",
        split = "#22262D",

        ansi = {
            "#090E13",
            "#C4746E",
            "#8A9A7B",
            "#C4B28A",
            "#8BA4B0",
            "#A292A3",
            "#8EA4A2",
            "#A4A7A4",
        },
        brights = {
            "#A4A7A4",
            "#E46876",
            "#87A987",
            "#E6C384",
            "#7FB4CA",
            "#938AA9",
            "#7AA89F",
            "#C5C9C7",
        },
    },
}

return config