mirror of
https://github.com/maxmx03/solarized.nvim.git
synced 2026-09-10 07:26:26 -04:00
fix: selenized base02 and base04
This commit is contained in:
parent
5b304a17ae
commit
c84571d806
|
|
@ -67,7 +67,7 @@ colorscheme.
|
|||
| Name | Hex | Description |
|
||||
| ------- | ------- | ------------------------------------------ |
|
||||
| base03 | #103c48 | background |
|
||||
| base02 | #2d5b69 | background highlight |
|
||||
| base02 | #184956 | background highlight |
|
||||
| base01 | #72898f | comments / secondary comment |
|
||||
| base00 | #53676d | none |
|
||||
| base0 | #adbcbc | body text / default code / primary content |
|
||||
|
|
@ -87,7 +87,7 @@ colorscheme.
|
|||
|
||||
| Name | Hex (balance 70) | Description |
|
||||
| ----------- | ---------------- | --------------------------------- |
|
||||
| base04 | #184956 | sidebar background / float window |
|
||||
| base04 | #0b2a32 | sidebar background / float window |
|
||||
| mix_yellow | #4c5f3f | yellow + base03 / optional |
|
||||
| mix_orange | #525248 | orange + base03 / optional |
|
||||
| mix_red | #56444a | red + base03 / optional |
|
||||
|
|
@ -141,7 +141,7 @@ colorscheme.
|
|||
| Name | Hex | Description |
|
||||
| ------- | ------- | ------------------------------------------ |
|
||||
| base03 | #103c48 | none |
|
||||
| base02 | #2d5b69 | none |
|
||||
| base02 | #184956 | none |
|
||||
| base01 | #3a4d53 | optional emphasized content |
|
||||
| base00 | #53676d | body text / default code / primary content |
|
||||
| base0 | #adbcbc | none |
|
||||
|
|
|
|||
|
|
@ -45,5 +45,3 @@ else
|
|||
},
|
||||
}
|
||||
end
|
||||
|
||||
return theme
|
||||
|
|
|
|||
|
|
@ -769,7 +769,7 @@ M.set_highlight = function(colors, config)
|
|||
nvim_set_hl('TelescopePromptBorder', { link = 'TelescopeBorder' })
|
||||
nvim_set_hl('TelescopeResultsBorder', { link = 'TelescopeBorder' })
|
||||
nvim_set_hl('TelescopePreviewBorder', { link = 'TelescopeBorder' })
|
||||
nvim_set_hl('TelescopeTitle', { link = 'Title' })
|
||||
nvim_set_hl('TelescopeTitle', { fg = colors.blue, bg = colors.mix_blue })
|
||||
nvim_set_hl('TelescopePromptTitle', { link = 'TelescopeTitle' })
|
||||
nvim_set_hl('TelescopeResultsTitle', { link = 'TelescopeTitle' })
|
||||
nvim_set_hl('TelescopePreviewTitle', { link = 'TelescopeTitle' })
|
||||
|
|
|
|||
|
|
@ -74,8 +74,9 @@ M.solarized = {
|
|||
|
||||
---@type solarized.palette
|
||||
M.selenized = {
|
||||
base04 = '#0b2a32',
|
||||
base03 = '#103c48',
|
||||
base02 = '#2d5b69',
|
||||
base02 = '#184956',
|
||||
base01 = '#72898f',
|
||||
base00 = '#53676d',
|
||||
base0 = '#adbcbc',
|
||||
|
|
@ -90,7 +91,6 @@ M.selenized = {
|
|||
blue = '#4695f7',
|
||||
cyan = '#41c7b9',
|
||||
green = '#75b938',
|
||||
base04 = '#184956',
|
||||
mix_yellow = '#4c5f3f',
|
||||
mix_orange = '#525248',
|
||||
mix_red = '#56444a',
|
||||
|
|
|
|||
|
|
@ -38,8 +38,9 @@ M.solarized = {
|
|||
|
||||
---@type solarized.palette
|
||||
M.selenized = {
|
||||
base04 = '#0b2a32',
|
||||
base03 = '#103c48',
|
||||
base02 = '#2d5b69',
|
||||
base02 = '#184956',
|
||||
base01 = '#3a4d53',
|
||||
base00 = '#53676d',
|
||||
base0 = '#53676d',
|
||||
|
|
|
|||
Loading…
Reference in a new issue