Skip to content

Commit 57d8ae6

Browse files
authored
fix(termux): update termux theme to use the new terminal colors (#651)
## Description Refs: #648 ## Screenshots ![Screenshot_20241024-161802_Termux](https://github.com/user-attachments/assets/3df70ecb-1327-4c4c-ba27-2fed95cbff14) ![Screenshot_20241024-161840_Termux](https://github.com/user-attachments/assets/c7155ec4-8bab-4db7-b857-8e33755d2b34) ![Screenshot_20241024-161938_Termux](https://github.com/user-attachments/assets/931d35e2-c8f6-451d-bbc3-210519920227) ![Screenshot_20241024-162005_Termux](https://github.com/user-attachments/assets/3e1e0f02-29f4-431b-b01a-10cb5f6d56c1)
1 parent 19f39b5 commit 57d8ae6

File tree

1 file changed

+17
-26
lines changed

1 file changed

+17
-26
lines changed

lua/tokyonight/extra/termux.lua

+17-26
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,6 @@ local M = {}
44

55
--- @param colors ColorScheme
66
function M.generate(colors)
7-
local extended_colors = vim.tbl_extend("force", colors, {
8-
red_bright = util.blend_fg(colors.red, 0.5),
9-
green_bright = util.blend_fg(colors.green, 0.5),
10-
yellow_bright = util.blend_fg(colors.yellow, 0.5),
11-
blue_bright = util.blend_fg(colors.blue, 0.5),
12-
magenta_bright = util.blend_fg(colors.magenta, 0.5),
13-
cyan_bright = util.blend_fg(colors.cyan, 0.5),
14-
})
15-
167
local termux = util.template(
178
[[
189
# -----------------------------------------------------------------------------
@@ -24,30 +15,30 @@ background: ${bg}
2415
foreground: ${fg}
2516
2617
# Normal colors
27-
color0: ${black}
28-
color1: ${red}
29-
color2: ${green}
30-
color3: ${yellow}
31-
color4: ${blue}
32-
color5: ${magenta}
33-
color6: ${cyan}
34-
color7: ${fg_dark}
18+
color0: ${terminal.black}
19+
color1: ${terminal.red}
20+
color2: ${terminal.green}
21+
color3: ${terminal.yellow}
22+
color4: ${terminal.blue}
23+
color5: ${terminal.magenta}
24+
color6: ${terminal.cyan}
25+
color7: ${terminal.white}
3526
3627
# Bright colors
37-
color8: ${terminal_black}
38-
color9: ${red_bright}
39-
color10: ${green_bright}
40-
color11: ${yellow_bright}
41-
color12: ${blue_bright}
42-
color13: ${magenta_bright}
43-
color14: ${cyan_bright}
44-
color15: ${fg}
28+
color8: ${terminal.black_bright}
29+
color9: ${terminal.red_bright}
30+
color10: ${terminal.green_bright}
31+
color11: ${terminal.yellow_bright}
32+
color12: ${terminal.blue_bright}
33+
color13: ${terminal.magenta_bright}
34+
color14: ${terminal.cyan_bright}
35+
color15: ${terminal.white_bright}
4536
4637
# Extended colors
4738
color16: ${orange}
4839
color17: ${red1}
4940
]],
50-
extended_colors
41+
colors
5142
)
5243

5344
return termux

0 commit comments

Comments
 (0)