aboutsummaryrefslogtreecommitdiff
path: root/.config/wezterm/colors.lua
blob: 58ae6393bbed4955c229802d2f43fe922b5aadc5 (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
41
42
43
44
45
46
47
48
return {
    foreground = C.fg,
    background = C.bg,

    cursor_bg = C.fg,
    cursor_fg = C.bg,
    cursor_border = C.bg,

    selection_bg = C.bright.black,
    selection_fg = C.fg,

    visual_bell = C.white,

    ansi = {
        C.black,
        C.red,
        C.green,
        C.yellow,
        C.blue,
        C.pink,
        C.cyan,
        C.white,
    },
    brights = {
        C.bright.black,
        C.bright.red,
        C.bright.green,
        C.bright.yellow,
        C.bright.blue,
        C.bright.pink,
        C.bright.cyan,
        C.bright.white,
    },

    tab_bar = {
        background = C.bg,

        active_tab = {
            bg_color = C.bg,
            fg_color = C.fg
        },

        inactive_tab = {
            bg_color = C.bg,
            fg_color = C.fg_dark
        },
    }
}