|
1 | | -local colors = { |
| 1 | +local c = { |
2 | 2 | none = "NONE", |
3 | | - ------------------- |
4 | | - red = "#E67C83", |
5 | | - blue = "#82A3B0", |
6 | | - green = "#7FAA55", |
7 | | - yellow = "#CC9300", |
8 | | - purple = "#D085BD", |
9 | | - cyan = "#57AD8C", |
10 | | - orange = "#E08664", |
11 | | - ------------------- |
12 | | - alt_red = "#E77777", |
13 | | - alt_blue = "#9CBDC9", |
14 | | - alt_green = "#9AC374", |
15 | | - alt_yellow = "#FFA31A", |
16 | | - alt_purple = "#E8A1D7", |
17 | | - alt_cyan = "#88C3AB", |
18 | | - alt_orange = "#FAA27F", |
19 | | - ------------------- |
20 | | - base = "#0E0507", |
21 | | - crust = "#12070A", -- neo-tree |
22 | | - mantle = "#18090E", -- inactive |
23 | | - ------------------- |
24 | | - overlay0 = "#3E222A", |
25 | | - overlay1 = "#301B21", -- status |
26 | | - overlay2 = "#231418", |
27 | | - ------------------- |
28 | | - surface0 = "#17060A", -- current line |
29 | | - surface1 = "#211014", |
30 | | - surface2 = "#2E1B20", |
31 | | - ------------------- |
32 | | - text = "#AA989B", -- carrot |
33 | | - subtext0 = "#3B2329", |
34 | | - subtext1 = "#644B50", -- headings |
35 | | - ------------------- |
36 | | - -- icon colors |
37 | | - ------------------- |
| 3 | + syntax = {}, |
| 4 | + ui = {}, |
| 5 | + term = {}, |
| 6 | +} |
| 7 | + |
| 8 | +-------------------------------- |
| 9 | +--- Syntax |
| 10 | +-------------------------------- |
| 11 | +c.syntax.red = "#E67C83" |
| 12 | +c.syntax.blue = "#82A3B0" |
| 13 | +c.syntax.green = "#7FAA55" |
| 14 | +c.syntax.yellow = "#CC9300" |
| 15 | +c.syntax.purple = "#D085BD" |
| 16 | +c.syntax.cyan = "#57AD8C" |
| 17 | +c.syntax.orange = "#E08664" |
| 18 | +c.syntax.text = "#AA989B" |
| 19 | +c.syntax.subtext0 = "#644B50" |
| 20 | +c.syntax.subtext1 = "#3B2329" |
| 21 | + |
| 22 | +-------------------------------- |
| 23 | +--- UI |
| 24 | +-------------------------------- |
| 25 | +c.ui.red = "#E77777" |
| 26 | +c.ui.blue = "#9CBDC9" |
| 27 | +c.ui.green = "#9AC374" |
| 28 | +c.ui.yellow = "#FFA31A" |
| 29 | +c.ui.purple = "#E8A1D7" |
| 30 | +c.ui.cyan = "#88C3AB" |
| 31 | +c.ui.orange = "#FAA27F" |
| 32 | + |
| 33 | +c.ui.tabline = "#18090E" |
| 34 | +c.ui.winbar = "#644B50" |
| 35 | +c.ui.tool = "#11060B" |
| 36 | +c.ui.base = "#0B0406" |
| 37 | +c.ui.statusline = "#18090E" |
| 38 | +c.ui.split = "#11060B" |
| 39 | +c.ui.popup = "#11060B" |
| 40 | +c.ui.border = "#FAA27F" |
| 41 | +c.ui.current_line = "#17060A" |
| 42 | +c.ui.scrollbar = "#FAA27F" |
| 43 | +c.ui.selection = "#26343F" |
| 44 | +c.ui.highlight = "#242628" |
| 45 | +c.ui.text = "#AA989B" |
| 46 | + |
| 47 | +-------------------------------- |
| 48 | +--- terminal |
| 49 | +-------------------------------- |
| 50 | +c.term.black = c.ui.tabline |
| 51 | +c.term.bright_black = c.ui.base |
| 52 | + |
| 53 | +c.term.red = c.syntax.red |
| 54 | +c.term.bright_red = c.syntax.red |
| 55 | + |
| 56 | +c.term.green = c.syntax.green |
| 57 | +c.term.bright_green = c.syntax.green |
| 58 | + |
| 59 | +c.term.yellow = c.syntax.yellow |
| 60 | +c.term.bright_yellow = c.syntax.yellow |
| 61 | + |
| 62 | +c.term.blue = c.syntax.blue |
| 63 | +c.term.bright_blue = c.syntax.blue |
| 64 | + |
| 65 | +c.term.purple = c.syntax.purple |
| 66 | +c.term.bright_purple = c.syntax.purple |
| 67 | + |
| 68 | +c.term.cyan = c.syntax.cyan |
| 69 | +c.term.bright_cyan = c.syntax.cyan |
| 70 | + |
| 71 | +c.term.white = c.ui.base |
| 72 | +c.term.bright_white = c.ui.base |
| 73 | + |
| 74 | +c.term.background = c.ui.base |
| 75 | +c.term.foreground = c.ui.text |
| 76 | + |
| 77 | +-------------------------------- |
| 78 | +--- Icons |
| 79 | +-------------------------------- |
| 80 | +c.icon = { |
38 | 81 | c = "#519aba", |
39 | 82 | css = "#61afef", |
40 | 83 | deb = "#a1b7ee", |
@@ -67,4 +110,4 @@ local colors = { |
67 | 110 | pkg = "#d39ede", |
68 | 111 | } |
69 | 112 |
|
70 | | -return colors |
| 113 | +return c |
0 commit comments