Skip to content
This repository was archived by the owner on Jul 11, 2022. It is now read-only.

Commit db502c6

Browse files
committed
enhance: bright & dark colors updated in terminal themes
1 parent 3663151 commit db502c6

File tree

6 files changed

+18
-17
lines changed

6 files changed

+18
-17
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- plugin support [ggandor/lightspeed.nvim](https://github.com/ggandor/lightspeed.nvim) #103
1313
- feat: use typing (types.od.HighlightStyle) inside `theme.lua`
1414
- feat: add non-exists highlight from `overrides` option in dev mode (fixed #99)
15+
- enhance: bright & dark colors updated in terminal themes
1516

1617
### Changed
1718

lua/onedark/terminal/alacritty.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ colors:
2727
# Normal colors
2828
normal:
2929
black: '${black0}'
30-
red: '${red1}'
30+
red: '${red0}'
3131
green: '${green0}'
32-
yellow: '${yellow1}'
32+
yellow: '${yellow0}'
3333
blue: '${blue0}'
3434
magenta: '${purple0}'
3535
cyan: '${cyan0}'
@@ -41,7 +41,7 @@ colors:
4141
red: '${red1}'
4242
green: '${green0}'
4343
yellow: '${yellow1}'
44-
blue: '${blue0}'
44+
blue: '${blue1}'
4545
magenta: '${purple0}'
4646
cyan: '${cyan0}'
4747
white: '${fg0}'

lua/onedark/terminal/kitty.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ inactive_border_color ${bg_visual}
2626
2727
# normal
2828
color0 ${black0}
29-
color1 ${red1}
29+
color1 ${red0}
3030
color2 ${green0}
31-
color3 ${yellow1}
31+
color3 ${yellow0}
3232
color4 ${blue0}
3333
color5 ${purple0}
3434
color6 ${cyan0}
3535
color7 ${fg_dark}
3636
3737
# bright
38-
color8 ${fg_gutter}
38+
color8 ${fg_dark}
3939
color9 ${red1}
4040
color10 ${green0}
4141
color11 ${yellow1}
42-
color12 ${blue0}
42+
color12 ${blue1}
4343
color13 ${purple0}
4444
color14 ${cyan0}
4545
color15 ${fg0}

lua/onedark/util.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -190,14 +190,14 @@ util.terminal = function(colors)
190190
vim.g.terminal_color_7 = colors.fg_dark
191191
vim.g.terminal_color_15 = colors.fg0
192192
-- colors
193-
vim.g.terminal_color_1 = colors.red1
193+
vim.g.terminal_color_1 = colors.red0
194194
vim.g.terminal_color_9 = colors.red1
195195
vim.g.terminal_color_2 = colors.green0
196196
vim.g.terminal_color_10 = colors.green0
197-
vim.g.terminal_color_3 = colors.yellow1
197+
vim.g.terminal_color_3 = colors.yellow0
198198
vim.g.terminal_color_11 = colors.yellow1
199199
vim.g.terminal_color_4 = colors.blue0
200-
vim.g.terminal_color_12 = colors.blue0
200+
vim.g.terminal_color_12 = colors.blue1
201201
vim.g.terminal_color_5 = colors.purple0
202202
vim.g.terminal_color_13 = colors.purple0
203203
vim.g.terminal_color_6 = colors.cyan0

terminal/alacritty_onedark.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ colors:
1313
# Normal colors
1414
normal:
1515
black: '0x20232A'
16-
red: '0xe86671'
16+
red: '0xe06c75'
1717
green: '0x98c379'
18-
yellow: '0xe5c07b'
18+
yellow: '0xebd09c'
1919
blue: '0x61afef'
2020
magenta: '0xc678dd'
2121
cyan: '0x56b6c2'
@@ -27,7 +27,7 @@ colors:
2727
red: '0xe86671'
2828
green: '0x98c379'
2929
yellow: '0xe5c07b'
30-
blue: '0x61afef'
30+
blue: '0x528bff'
3131
magenta: '0xc678dd'
3232
cyan: '0x56b6c2'
3333
white: '0xabb2bf'

terminal/kitty_onedark.conf

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ inactive_border_color #393f4a
1919

2020
# normal
2121
color0 #20232A
22-
color1 #e86671
22+
color1 #e06c75
2323
color2 #98c379
24-
color3 #e5c07b
24+
color3 #ebd09c
2525
color4 #61afef
2626
color5 #c678dd
2727
color6 #56b6c2
2828
color7 #798294
2929

3030
# bright
31-
color8 #5c6370
31+
color8 #798294
3232
color9 #e86671
3333
color10 #98c379
3434
color11 #e5c07b
35-
color12 #61afef
35+
color12 #528bff
3636
color13 #c678dd
3737
color14 #56b6c2
3838
color15 #abb2bf

0 commit comments

Comments
 (0)