caio.co/de/dotfiles


wezterm: zenwritten for dark/light scheme 💬 by Caio a year ago (log)
why play with saturation when i can haz zero

Blob config/wezterm/schemes.lua

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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
return {
  -- zenwritten background=light
  ['light'] = {
    foreground    = "#353535",
    background    = "#EEEEEE",
    cursor_fg     = "#EEEEEE",
    cursor_bg     = "#353535",
    cursor_border = "#EEEEEE",
    selection_fg  = "#353535",
    selection_bg  = "#D7D7D7",

    ansi = {
      "#EEEEEE",
      "#A8334C",
      "#4F6C31",
      "#944927",
      "#286486",
      "#88507D",
      "#3B8992",
      "#353535"
    },

    brights = {
      "#C6C3C3",
      "#94253E",
      "#3F5A22",
      "#803D1C",
      "#1D5573",
      "#7B3B70",
      "#2B747C",
      "#5C5C5C"
    },

  },

  -- zenwritten background=dark
  ['dark'] = {
    foreground    = "#BBBBBB",
    background    = "#191919",
    cursor_fg     = "#191919",
    cursor_bg     = "#C9C9C9",
    cursor_border = "#191919",
    selection_fg  = "#BBBBBB",
    selection_bg  = "#404040",

    ansi = {
      "#191919",
      "#DE6E7C",
      "#819B69",
      "#B77E64",
      "#6099C0",
      "#B279A7",
      "#66A5AD",
      "#BBBBBB"
    },

    brights = {
      "#3D3839",
      "#E8838F",
      "#8BAE68",
      "#D68C67",
      "#61ABDA",
      "#CF86C1",
      "#65B8C1",
      "#8E8E8E"
    },
  },
}