From 65c91c4b70176eb9f42dedd0986f54479b32806e Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Fri, 1 Dec 2023 15:30:50 -0500 Subject: [PATCH] Fix night theme, search fg --- extras/alacritty/faroutday.yml | 4 +- extras/alacritty/faroutnight.yml | 4 +- extras/delta/faroutday.gitconfig | 16 +- extras/delta/faroutnight.gitconfig | 16 +- extras/dunst/faroutday.dunstrc | 4 +- extras/dunst/faroutnight.dunstrc | 4 +- extras/fish/faroutday.fish | 2 +- extras/fish/faroutnight.fish | 2 +- extras/fish_themes/faroutday.theme | 6 +- extras/fish_themes/faroutnight.theme | 6 +- extras/foot/faroutday.ini | 8 +- extras/foot/faroutnight.ini | 8 +- extras/gitui/faroutday.ron | 6 +- extras/gitui/faroutnight.ron | 6 +- extras/helix/faroutday.toml | 60 ++-- extras/helix/faroutnight.toml | 60 ++-- extras/iterm/faroutday.itermcolors | 24 +- extras/iterm/faroutnight.itermcolors | 24 +- extras/kitty/faroutday.conf | 12 +- extras/kitty/faroutnight.conf | 12 +- extras/lua/faroutday.lua | 340 +++++++++++------------ extras/lua/faroutmoon.lua | 2 +- extras/lua/faroutnight.lua | 340 +++++++++++------------ extras/lua/faroutstorm.lua | 2 +- extras/prism/faroutday.js | 2 +- extras/prism/faroutnight.js | 2 +- extras/sublime/faroutday.tmTheme | 2 +- extras/sublime/faroutnight.tmTheme | 2 +- extras/terminator/faroutday.conf | 4 +- extras/terminator/faroutnight.conf | 4 +- extras/tilix/faroutday.json | 4 +- extras/tilix/faroutnight.json | 4 +- extras/tmux/faroutday.tmux | 18 +- extras/tmux/faroutnight.tmux | 18 +- extras/wezterm/faroutday.toml | 18 +- extras/wezterm/faroutnight.toml | 18 +- extras/windows_terminal/faroutday.json | 6 +- extras/windows_terminal/faroutnight.json | 6 +- extras/xfceterm/faroutday.theme | 6 +- extras/xfceterm/faroutnight.theme | 6 +- extras/xresources/faroutday.Xresources | 4 +- extras/xresources/faroutnight.Xresources | 4 +- extras/zathura/faroutday.zathurarc | 18 +- extras/zathura/faroutnight.zathurarc | 18 +- lua/farout/colors.lua | 5 +- lua/farout/theme.lua | 2 +- 46 files changed, 568 insertions(+), 571 deletions(-) diff --git a/extras/alacritty/faroutday.yml b/extras/alacritty/faroutday.yml index 37e7da2..5890387 100644 --- a/extras/alacritty/faroutday.yml +++ b/extras/alacritty/faroutday.yml @@ -2,12 +2,12 @@ colors: # Default colors primary: - background: '0xe1e2e7' + background: '0xf9f6f6' foreground: '0x6c6252' # Normal colors normal: - black: '0xe9e9ed' + black: '0xfaf8f8' red: '0xdb5234' green: '0x715e4b' yellow: '0x9b6635' diff --git a/extras/alacritty/faroutnight.yml b/extras/alacritty/faroutnight.yml index 62f5d22..c4ca636 100644 --- a/extras/alacritty/faroutnight.yml +++ b/extras/alacritty/faroutnight.yml @@ -2,12 +2,12 @@ colors: # Default colors primary: - background: '0x1a1b26' + background: '0x0f0908' foreground: '0xE0CCAE' # Normal colors normal: - black: '0x15161e' + black: '0x0c0706' red: '0xbf472c' green: '0xa4896f' yellow: '0xf2a766' diff --git a/extras/delta/faroutday.gitconfig b/extras/delta/faroutday.gitconfig index 727cd28..9cadfda 100644 --- a/extras/delta/faroutday.gitconfig +++ b/extras/delta/faroutday.gitconfig @@ -1,12 +1,12 @@ [delta] - minus-style = syntax "#d9cace" - minus-non-emph-style = syntax "#d9cace" - minus-emph-style = syntax "#d5958f" - minus-empty-line-marker-style = syntax "#d9cace" + minus-style = syntax "#f0dcd9" + minus-non-emph-style = syntax "#f0dcd9" + minus-emph-style = syntax "#e69c91" + minus-empty-line-marker-style = syntax "#f0dcd9" line-numbers-minus-style = "#da6b52" - plus-style = syntax "#c5c2c7" - plus-non-emph-style = syntax "#c5c2c7" - plus-emph-style = syntax "#9b8a83" - plus-empty-line-marker-style = syntax "#c5c2c7" + plus-style = syntax "#e2d3cb" + plus-non-emph-style = syntax "#e2d3cb" + plus-emph-style = syntax "#ab927e" + plus-empty-line-marker-style = syntax "#e2d3cb" line-numbers-plus-style = "#847254" line-numbers-zero-style = "#d79687" diff --git a/extras/delta/faroutnight.gitconfig b/extras/delta/faroutnight.gitconfig index be61e79..e4f0bff 100644 --- a/extras/delta/faroutnight.gitconfig +++ b/extras/delta/faroutnight.gitconfig @@ -1,12 +1,12 @@ [delta] - minus-style = syntax "#38262c" - minus-non-emph-style = syntax "#38262c" - minus-emph-style = syntax "#733d37" - minus-empty-line-marker-style = syntax "#38262c" + minus-style = syntax "#2e1712" + minus-non-emph-style = syntax "#2e1712" + minus-emph-style = syntax "#6d3327" + minus-empty-line-marker-style = syntax "#2e1712" line-numbers-minus-style = "#E26F55" - plus-style = syntax "#353237" - plus-non-emph-style = syntax "#353237" - plus-emph-style = syntax "#6b5f5a" - plus-empty-line-marker-style = syntax "#353237" + plus-style = syntax "#2c231e" + plus-non-emph-style = syntax "#2c231e" + plus-emph-style = syntax "#655649" + plus-empty-line-marker-style = syntax "#2c231e" line-numbers-plus-style = "#CAAF82" line-numbers-zero-style = "#6B4035" diff --git a/extras/dunst/faroutday.dunstrc b/extras/dunst/faroutday.dunstrc index 4801191..f17e65c 100644 --- a/extras/dunst/faroutday.dunstrc +++ b/extras/dunst/faroutday.dunstrc @@ -2,12 +2,12 @@ # For more configuraion options see https://github.com/dunst-project/dunst/blob/master/dunstrc [urgency_low] - background = "#e9e9ec" + background = "#f0e9e8" foreground = "#6c6252" frame_color = "#6c6252" [urgency_normal] - background = "#e1e2e7" + background = "#f9f6f6" foreground = "#6c6252" frame_color = "#6c6252" diff --git a/extras/dunst/faroutnight.dunstrc b/extras/dunst/faroutnight.dunstrc index dd16064..0f6c092 100644 --- a/extras/dunst/faroutnight.dunstrc +++ b/extras/dunst/faroutnight.dunstrc @@ -2,12 +2,12 @@ # For more configuraion options see https://github.com/dunst-project/dunst/blob/master/dunstrc [urgency_low] - background = "#16161e" + background = "#1f1311" foreground = "#E0CCAE" frame_color = "#E0CCAE" [urgency_normal] - background = "#1a1b26" + background = "#0f0908" foreground = "#E0CCAE" frame_color = "#E0CCAE" diff --git a/extras/fish/faroutday.fish b/extras/fish/faroutday.fish index 458e2de..485977d 100644 --- a/extras/fish/faroutday.fish +++ b/extras/fish/faroutday.fish @@ -1,6 +1,6 @@ # TokyoNight Color Palette set -l foreground 6c6252 - set -l selection c48c75 + set -l selection dd9169 set -l comment d79687 set -l red db5234 set -l orange b15c00 diff --git a/extras/fish/faroutnight.fish b/extras/fish/faroutnight.fish index dc54185..2c3045e 100644 --- a/extras/fish/faroutnight.fish +++ b/extras/fish/faroutnight.fish @@ -1,6 +1,6 @@ # TokyoNight Color Palette set -l foreground E0CCAE - set -l selection 714f41 + set -l selection 6b442f set -l comment 6B4035 set -l red bf472c set -l orange ff9e64 diff --git a/extras/fish_themes/faroutday.theme b/extras/fish_themes/faroutday.theme index 5b094f7..5a1e704 100644 --- a/extras/fish_themes/faroutday.theme +++ b/extras/fish_themes/faroutday.theme @@ -10,8 +10,8 @@ fish_color_error db5234 fish_color_param 876060 fish_color_comment d79687 - fish_color_selection --background=c48c75 - fish_color_search_match --background=c48c75 + fish_color_selection --background=dd9169 + fish_color_search_match --background=dd9169 fish_color_operator 715e4b fish_color_escape c37f87 fish_color_autosuggestion d79687 @@ -21,5 +21,5 @@ fish_pager_color_prefix 91654c fish_pager_color_completion 6c6252 fish_pager_color_description d79687 - fish_pager_color_selected_background --background=c48c75 + fish_pager_color_selected_background --background=dd9169 \ No newline at end of file diff --git a/extras/fish_themes/faroutnight.theme b/extras/fish_themes/faroutnight.theme index 4206e85..1f43561 100644 --- a/extras/fish_themes/faroutnight.theme +++ b/extras/fish_themes/faroutnight.theme @@ -10,8 +10,8 @@ fish_color_error bf472c fish_color_param a47a7a fish_color_comment 6B4035 - fish_color_selection --background=714f41 - fish_color_search_match --background=714f41 + fish_color_selection --background=6b442f + fish_color_search_match --background=6b442f fish_color_operator a4896f fish_color_escape 8a4b53 fish_color_autosuggestion 6B4035 @@ -21,5 +21,5 @@ fish_pager_color_prefix a67458 fish_pager_color_completion E0CCAE fish_pager_color_description 6B4035 - fish_pager_color_selected_background --background=714f41 + fish_pager_color_selected_background --background=6b442f \ No newline at end of file diff --git a/extras/foot/faroutday.ini b/extras/foot/faroutday.ini index a9000d4..634e07a 100644 --- a/extras/foot/faroutday.ini +++ b/extras/foot/faroutday.ini @@ -1,14 +1,14 @@ [cursor] -color=6c6252 c48c75 +color=6c6252 dd9169 [colors] foreground=6c6252 -background=e1e2e7 +background=f9f6f6 selection-foreground=6c6252 -selection-background=c48c75 +selection-background=dd9169 urls=887562 -regular0=e9e9ed +regular0=faf8f8 regular1=db5234 regular2=715e4b regular3=9b6635 diff --git a/extras/foot/faroutnight.ini b/extras/foot/faroutnight.ini index 0c6b5c4..7fcb2c6 100644 --- a/extras/foot/faroutnight.ini +++ b/extras/foot/faroutnight.ini @@ -1,14 +1,14 @@ [cursor] -color=E0CCAE 714f41 +color=E0CCAE 6b442f [colors] foreground=E0CCAE -background=1a1b26 +background=0f0908 selection-foreground=E0CCAE -selection-background=714f41 +selection-background=6b442f urls=c4a98f -regular0=15161e +regular0=0c0706 regular1=bf472c regular2=a4896f regular3=f2a766 diff --git a/extras/gitui/faroutday.ron b/extras/gitui/faroutday.ron index cb45828..5889755 100644 --- a/extras/gitui/faroutday.ron +++ b/extras/gitui/faroutday.ron @@ -3,8 +3,8 @@ command_fg: Rgb(215,150,135), // comment #d79687 selection_bg: Rgb(234,225,224), // bg_highlight #eae1e0 selection_fg: Rgb(145,101,76), // cyan #91654c - cmdbar_bg: Rgb(225,226,231), // bg #e1e2e7 - cmdbar_extra_lines_bg: Rgb(225,226,231), // bg #e1e2e7 + cmdbar_bg: Rgb(249,246,246), // bg #f9f6f6 + cmdbar_extra_lines_bg: Rgb(249,246,246), // bg #f9f6f6 disabled_fg: Rgb(215,150,135), // comment #d79687 diff_line_add: Rgb(113,94,75), // green #715e4b diff_line_delete: Rgb(219,82,52), // red #db5234 @@ -16,7 +16,7 @@ commit_time: Rgb(162,121,97), // teal #a27961 commit_author: Rgb(113,94,75), // green #715e4b danger_fg: Rgb(219,82,52), // red #db5234 - push_gauge_bg: Rgb(225,226,231), // bg #e1e2e7 + push_gauge_bg: Rgb(249,246,246), // bg #f9f6f6 push_gauge_fg: Rgb(108,98,82), // fg #6c6252 tag_fg: Rgb(155,97,105), // magenta2 #9b6169 branch_fg: Rgb(155,102,53), // yellow #9b6635 diff --git a/extras/gitui/faroutnight.ron b/extras/gitui/faroutnight.ron index 984682b..d7e5cbe 100644 --- a/extras/gitui/faroutnight.ron +++ b/extras/gitui/faroutnight.ron @@ -3,8 +3,8 @@ command_fg: Rgb(107,64,53), // comment #6B4035 selection_bg: Rgb(36,24,22), // bg_highlight #241816 selection_fg: Rgb(166,116,88), // cyan #a67458 - cmdbar_bg: Rgb(26,27,38), // bg #1a1b26 - cmdbar_extra_lines_bg: Rgb(26,27,38), // bg #1a1b26 + cmdbar_bg: Rgb(15,9,8), // bg #0f0908 + cmdbar_extra_lines_bg: Rgb(15,9,8), // bg #0f0908 disabled_fg: Rgb(107,64,53), // comment #6B4035 diff_line_add: Rgb(164,137,111), // green #a4896f diff_line_delete: Rgb(191,71,44), // red #bf472c @@ -16,7 +16,7 @@ commit_time: Rgb(198,148,120), // teal #c69478 commit_author: Rgb(164,137,111), // green #a4896f danger_fg: Rgb(191,71,44), // red #bf472c - push_gauge_bg: Rgb(26,27,38), // bg #1a1b26 + push_gauge_bg: Rgb(15,9,8), // bg #0f0908 push_gauge_fg: Rgb(224,204,174), // fg #E0CCAE tag_fg: Rgb(170,107,115), // magenta2 #aa6b73 branch_fg: Rgb(242,167,102), // yellow #f2a766 diff --git a/extras/helix/faroutday.toml b/extras/helix/faroutday.toml index de05d49..51ac930 100644 --- a/extras/helix/faroutday.toml +++ b/extras/helix/faroutday.toml @@ -38,8 +38,8 @@ keyword = { fg = "#876060", modifiers = ["italic"] } label = { fg = "#c77544" } "markup.bold" = { modifiers = ["bold"] } "markup.heading" = { fg = "#c77544", modifiers = ["bold"] } -"markup.heading.completion" = { bg = "#e9e9ec", fg = "#6c6252" } -"markup.heading.hover" = { bg = "#d4a69f" } +"markup.heading.completion" = { bg = "#f0e9e8", fg = "#6c6252" } +"markup.heading.hover" = { bg = "#dcaa9f" } "markup.italic" = { modifiers = ["italic"] } "markup.link" = { fg = "#c77544", underline = { style = "line" } } "markup.link.label" = { fg = "#a27961" } @@ -60,28 +60,28 @@ string = { fg = "#715e4b" } "string.special" = { fg = "#db5234" } tag = { fg = "#c37f87" } type = { fg = "#db5234" } -"type.builtin" = { fg = "#ec6a53" } +"type.builtin" = { fg = "#f06c53" } "type.enum" = { fg = "#db5234" } "type.enum.variant" = { fg = "#b15c00" } "ui.background" = { bg = "bg" } -"ui.cursor" = { bg = "#6c6252", fg = "#e1e2e7" } +"ui.cursor" = { bg = "#6c6252", fg = "#f9f6f6" } "ui.cursor.match" = { fg = "#b15c00", modifiers = ["bold"] } "ui.linenr" = { fg = "#d79687" } "ui.linenr.select" = { fg = "#91654c" } -"ui.menu" = { bg = "#e9e9ec", fg = "#6c6252" } -"ui.menu.scroll" = { bg = 14211292, fg = 14128775 } -"ui.menu.selected" = { bg = "#d4a69f" } -"ui.popup" = { bg = "#e9e9ec", fg = "#ec6a53" } +"ui.menu" = { bg = "#f0e9e8", fg = "#6c6252" } +"ui.menu.scroll" = { bg = 14866646, fg = 14128775 } +"ui.menu.selected" = { bg = "#dcaa9f" } +"ui.popup" = { bg = "#f0e9e8", fg = "#f06c53" } "ui.selection" = { bg = "bg_highlight" } -"ui.statusline" = { bg = "#e9e9ec", fg = "#9b6635" } -"ui.statusline.inactive" = { bg = "#e9e9ec", fg = "#d79687" } +"ui.statusline" = { bg = "#f0e9e8", fg = "#9b6635" } +"ui.statusline.inactive" = { bg = "#f0e9e8", fg = "#d79687" } "ui.statusline.normal" = { bg = "blue", fg = "black" } -"ui.text" = { bg = "#e1e2e7", fg = "#6c6252" } -"ui.text.focus" = { bg = "#c48c75" } +"ui.text" = { bg = "#f9f6f6", fg = "#6c6252" } +"ui.text.focus" = { bg = "#dd9169" } "ui.text.inactive" = { fg = "#d79687", modifiers = ["italic"] } -"ui.text.info" = { bg = "#e9e9ec", fg = "#6c6252" } -"ui.virtual.inlay-hint" = { bg = "#d3cfd5", fg = "#a27961" } -"ui.window" = { fg = "#e9e9ed", modifiers = ["bold"] } +"ui.text.info" = { bg = "#f0e9e8", fg = "#6c6252" } +"ui.virtual.inlay-hint" = { bg = "#eee4e0", fg = "#a27961" } +"ui.window" = { fg = "#faf8f8", modifiers = ["bold"] } variable = { fg = "#6c6252" } "variable.builtin" = { fg = "#db5234" } "variable.other.member" = { fg = "#887562" } @@ -89,16 +89,16 @@ variable = { fg = "#6c6252" } warning = { fg = "#9b6635" } [palette] -bg = "#e1e2e7" -bg_dark = "#e9e9ec" -bg_float = "#e9e9ec" +bg = "#f9f6f6" +bg_dark = "#f0e9e8" +bg_float = "#f0e9e8" bg_highlight = "#eae1e0" -bg_popup = "#e9e9ec" +bg_popup = "#f0e9e8" bg_search = "#aa6330" -bg_sidebar = "#e9e9ec" -bg_statusline = "#e9e9ec" -bg_visual = "#c48c75" -black = "#e9e9ed" +bg_sidebar = "#f0e9e8" +bg_statusline = "#f0e9e8" +bg_visual = "#dd9169" +black = "#faf8f8" blue = "#c77544" blue0 = "#aa6330" blue1 = "#db5234" @@ -106,17 +106,17 @@ blue2 = "#725f3e" blue5 = "#91654c" blue6 = "#a47d6a" blue7 = "#e88f6a" -border = "#e9e9ed" -border_highlight = "#ec6a53" +border = "#faf8f8" +border_highlight = "#f06c53" comment = "#d79687" cyan = "#91654c" dark3 = "#dfa9ad" dark5 = "#91654c" -"delta.add" = "#9b8a83" -"delta.delete" = "#d5958f" -"diff.add" = "#c5c2c7" -"diff.change" = "#ded7dd" -"diff.delete" = "#d9cace" +"delta.add" = "#ab927e" +"delta.delete" = "#e69c91" +"diff.add" = "#e2d3cb" +"diff.change" = "#f4ebe9" +"diff.delete" = "#f0dcd9" "diff.text" = "#e88f6a" error = "#a14834" fg = "#6c6252" diff --git a/extras/helix/faroutnight.toml b/extras/helix/faroutnight.toml index b91af31..870f926 100644 --- a/extras/helix/faroutnight.toml +++ b/extras/helix/faroutnight.toml @@ -38,8 +38,8 @@ keyword = { fg = "#a47a7a", modifiers = ["italic"] } label = { fg = "#d47d49" } "markup.bold" = { modifiers = ["bold"] } "markup.heading" = { fg = "#d47d49", modifiers = ["bold"] } -"markup.heading.completion" = { bg = "#16161e", fg = "#e0ccae" } -"markup.heading.hover" = { bg = "#5b3932" } +"markup.heading.completion" = { bg = "#1f1311", fg = "#e0ccae" } +"markup.heading.hover" = { bg = "#59352c" } "markup.italic" = { modifiers = ["italic"] } "markup.link" = { fg = "#d47d49", underline = { style = "line" } } "markup.link.label" = { fg = "#c69478" } @@ -60,28 +60,28 @@ string = { fg = "#a4896f" } "string.special" = { fg = "#bf472c" } tag = { fg = "#8a4b53" } type = { fg = "#bf472c" } -"type.builtin" = { fg = "#9e3e2b" } +"type.builtin" = { fg = "#9c3b25" } "type.enum" = { fg = "#bf472c" } "type.enum.variant" = { fg = "#ff9e64" } "ui.background" = { bg = "bg" } -"ui.cursor" = { bg = "#e0ccae", fg = "#1a1b26" } +"ui.cursor" = { bg = "#e0ccae", fg = "#0f0908" } "ui.cursor.match" = { fg = "#ff9e64", modifiers = ["bold"] } "ui.linenr" = { fg = "#6b4035" } "ui.linenr.select" = { fg = "#a67458" } -"ui.menu" = { bg = "#16161e", fg = "#e0ccae" } -"ui.menu.scroll" = { bg = 2236969, fg = 7028789 } -"ui.menu.selected" = { bg = "#5b3932" } -"ui.popup" = { bg = "#16161e", fg = "#9e3e2b" } +"ui.menu" = { bg = "#1f1311", fg = "#e0ccae" } +"ui.menu.scroll" = { bg = 2760477, fg = 7028789 } +"ui.menu.selected" = { bg = "#59352c" } +"ui.popup" = { bg = "#1f1311", fg = "#9c3b25" } "ui.selection" = { bg = "bg_highlight" } -"ui.statusline" = { bg = "#16161e", fg = "#f2a766" } -"ui.statusline.inactive" = { bg = "#16161e", fg = "#6b4035" } +"ui.statusline" = { bg = "#1f1311", fg = "#f2a766" } +"ui.statusline.inactive" = { bg = "#1f1311", fg = "#6b4035" } "ui.statusline.normal" = { bg = "blue", fg = "black" } -"ui.text" = { bg = "#1a1b26", fg = "#e0ccae" } -"ui.text.focus" = { bg = "#714f41" } +"ui.text" = { bg = "#0f0908", fg = "#e0ccae" } +"ui.text.focus" = { bg = "#6b442f" } "ui.text.inactive" = { fg = "#6b4035", modifiers = ["italic"] } -"ui.text.info" = { bg = "#16161e", fg = "#e0ccae" } -"ui.virtual.inlay-hint" = { bg = "#2b272e", fg = "#c69478" } -"ui.window" = { fg = "#15161e", modifiers = ["bold"] } +"ui.text.info" = { bg = "#1f1311", fg = "#e0ccae" } +"ui.virtual.inlay-hint" = { bg = "#211713", fg = "#c69478" } +"ui.window" = { fg = "#0c0706", modifiers = ["bold"] } variable = { fg = "#e0ccae" } "variable.builtin" = { fg = "#bf472c" } "variable.other.member" = { fg = "#c4a98f" } @@ -89,16 +89,16 @@ variable = { fg = "#e0ccae" } warning = { fg = "#f2a766" } [palette] -bg = "#1a1b26" -bg_dark = "#16161e" -bg_float = "#16161e" +bg = "#0f0908" +bg_dark = "#1f1311" +bg_float = "#1f1311" bg_highlight = "#241816" -bg_popup = "#16161e" +bg_popup = "#1f1311" bg_search = "#f49d69" -bg_sidebar = "#16161e" -bg_statusline = "#16161e" -bg_visual = "#714f41" -black = "#15161e" +bg_sidebar = "#1f1311" +bg_statusline = "#1f1311" +bg_visual = "#6b442f" +black = "#0c0706" blue = "#d47d49" blue0 = "#f49d69" blue1 = "#BF472C" @@ -106,17 +106,17 @@ blue2 = "#A4895C" blue5 = "#a67458" blue6 = "#BC907B" blue7 = "#703F29" -border = "#15161e" -border_highlight = "#9e3e2b" +border = "#0c0706" +border_highlight = "#9c3b25" comment = "#6B4035" cyan = "#a67458" dark3 = "#66292F" dark5 = "#A67458" -"delta.add" = "#6b5f5a" -"delta.delete" = "#733d37" -"diff.add" = "#353237" -"diff.change" = "#272026" -"diff.delete" = "#38262c" +"delta.add" = "#655649" +"delta.delete" = "#6d3327" +"diff.add" = "#2c231e" +"diff.change" = "#1e110d" +"diff.delete" = "#2e1712" "diff.text" = "#703F29" error = "#df674c" fg = "#E0CCAE" diff --git a/extras/iterm/faroutday.itermcolors b/extras/iterm/faroutday.itermcolors index 182c4cf..1bdb14e 100644 --- a/extras/iterm/faroutday.itermcolors +++ b/extras/iterm/faroutday.itermcolors @@ -7,13 +7,13 @@ Alpha Component 1 Blue Component - 0.9294117647058824 + 0.9725490196078431 Color Space sRGB Green Component - 0.9137254901960784 + 0.9725490196078431 Red Component - 0.9137254901960784 + 0.9803921568627451 Ansi 1 Color @@ -215,13 +215,13 @@ Alpha Component 1 Blue Component - 0.9058823529411765 + 0.9647058823529412 Color Space sRGB Green Component - 0.8862745098039215 + 0.9647058823529412 Red Component - 0.8823529411764706 + 0.9764705882352941 Badge Color @@ -280,13 +280,13 @@ Alpha Component 1 Blue Component - 0.9058823529411765 + 0.9647058823529412 Color Space sRGB Green Component - 0.8862745098039215 + 0.9647058823529412 Red Component - 0.8823529411764706 + 0.9764705882352941 Foreground Color @@ -332,13 +332,13 @@ Alpha Component 1 Blue Component - 0.4588235294117647 + 0.4117647058823529 Color Space sRGB Green Component - 0.5490196078431373 + 0.5686274509803921 Red Component - 0.7686274509803922 + 0.8666666666666667 \ No newline at end of file diff --git a/extras/iterm/faroutnight.itermcolors b/extras/iterm/faroutnight.itermcolors index 743fcca..b1e9913 100644 --- a/extras/iterm/faroutnight.itermcolors +++ b/extras/iterm/faroutnight.itermcolors @@ -7,13 +7,13 @@ Alpha Component 1 Blue Component - 0.1176470588235294 + 0.0235294117647059 Color Space sRGB Green Component - 0.0862745098039216 + 0.0274509803921569 Red Component - 0.0823529411764706 + 0.0470588235294118 Ansi 1 Color @@ -215,13 +215,13 @@ Alpha Component 1 Blue Component - 0.1490196078431373 + 0.0313725490196078 Color Space sRGB Green Component - 0.1058823529411765 + 0.0352941176470588 Red Component - 0.1019607843137255 + 0.0588235294117647 Badge Color @@ -280,13 +280,13 @@ Alpha Component 1 Blue Component - 0.1490196078431373 + 0.0313725490196078 Color Space sRGB Green Component - 0.1058823529411765 + 0.0352941176470588 Red Component - 0.1019607843137255 + 0.0588235294117647 Foreground Color @@ -332,13 +332,13 @@ Alpha Component 1 Blue Component - 0.2549019607843137 + 0.1843137254901961 Color Space sRGB Green Component - 0.3098039215686275 + 0.2666666666666667 Red Component - 0.4431372549019608 + 0.4196078431372549 \ No newline at end of file diff --git a/extras/kitty/faroutday.conf b/extras/kitty/faroutday.conf index fc97bec..ade34e9 100644 --- a/extras/kitty/faroutday.conf +++ b/extras/kitty/faroutday.conf @@ -6,27 +6,27 @@ ## upstream: https://github.com/thallada/farout.nvim/raw/main/extras/kitty/faroutday.conf -background #e1e2e7 +background #f9f6f6 foreground #6c6252 -selection_background #c48c75 +selection_background #dd9169 selection_foreground #6c6252 url_color #887562 cursor #6c6252 -cursor_text_color #e1e2e7 +cursor_text_color #f9f6f6 # Tabs active_tab_background #c77544 -active_tab_foreground #e9e9ec +active_tab_foreground #f0e9e8 inactive_tab_background #eae1e0 inactive_tab_foreground #dfa9ad -#tab_bar_background #e9e9ed +#tab_bar_background #faf8f8 # Windows active_border_color #c77544 inactive_border_color #eae1e0 # normal -color0 #e9e9ed +color0 #faf8f8 color1 #db5234 color2 #715e4b color3 #9b6635 diff --git a/extras/kitty/faroutnight.conf b/extras/kitty/faroutnight.conf index 41ab1eb..83b0e1c 100644 --- a/extras/kitty/faroutnight.conf +++ b/extras/kitty/faroutnight.conf @@ -6,27 +6,27 @@ ## upstream: https://github.com/thallada/farout.nvim/raw/main/extras/kitty/faroutnight.conf -background #1a1b26 +background #0f0908 foreground #E0CCAE -selection_background #714f41 +selection_background #6b442f selection_foreground #E0CCAE url_color #c4a98f cursor #E0CCAE -cursor_text_color #1a1b26 +cursor_text_color #0f0908 # Tabs active_tab_background #d47d49 -active_tab_foreground #16161e +active_tab_foreground #1f1311 inactive_tab_background #241816 inactive_tab_foreground #66292F -#tab_bar_background #15161e +#tab_bar_background #0c0706 # Windows active_border_color #d47d49 inactive_border_color #241816 # normal -color0 #15161e +color0 #0c0706 color1 #bf472c color2 #a4896f color3 #f2a766 diff --git a/extras/lua/faroutday.lua b/extras/lua/faroutday.lua index e753be3..3b36e1e 100644 --- a/extras/lua/faroutday.lua +++ b/extras/lua/faroutday.lua @@ -1,15 +1,15 @@ local colors = { _name = "faroutday", - bg = "#e1e2e7", - bg_dark = "#e9e9ec", - bg_float = "#e9e9ec", + bg = "#f9f6f6", + bg_dark = "#f0e9e8", + bg_float = "#f0e9e8", bg_highlight = "#eae1e0", - bg_popup = "#e9e9ec", + bg_popup = "#f0e9e8", bg_search = "#aa6330", - bg_sidebar = "#e9e9ec", - bg_statusline = "#e9e9ec", - bg_visual = "#c48c75", - black = "#e9e9ed", + bg_sidebar = "#f0e9e8", + bg_statusline = "#f0e9e8", + bg_visual = "#dd9169", + black = "#faf8f8", blue = "#c77544", blue0 = "#aa6330", blue1 = "#db5234", @@ -17,20 +17,20 @@ local colors = { blue5 = "#91654c", blue6 = "#a47d6a", blue7 = "#e88f6a", - border = "#e9e9ed", - border_highlight = "#ec6a53", + border = "#faf8f8", + border_highlight = "#f06c53", comment = "#d79687", cyan = "#91654c", dark3 = "#dfa9ad", dark5 = "#91654c", delta = { - add = "#9b8a83", - delete = "#d5958f" + add = "#ab927e", + delete = "#e69c91" }, diff = { - add = "#c5c2c7", - change = "#ded7dd", - delete = "#d9cace", + add = "#e2d3cb", + change = "#f4ebe9", + delete = "#f0dcd9", text = "#e88f6a" }, error = "#a14834", @@ -196,10 +196,10 @@ local highlights = { link = "@type.builtin" }, ["@lsp.typemod.type.defaultLibrary"] = { - fg = "#ec6a53" + fg = "#f06c53" }, ["@lsp.typemod.typeAlias.defaultLibrary"] = { - fg = "#ec6a53" + fg = "#f06c53" }, ["@lsp.typemod.variable.callable"] = { link = "@function" @@ -254,14 +254,14 @@ local highlights = { fg = "#a47d6a" }, ["@tag.delimiter.tsx"] = { - fg = "#b36f49" + fg = "#be7144" }, ["@tag.tsx"] = { fg = "#db5234" }, ["@text.danger"] = { bg = "#a14834", - fg = "#e1e2e7" + fg = "#f9f6f6" }, ["@text.diff.add"] = { link = "DiffAdd" @@ -308,10 +308,10 @@ local highlights = { }, ["@text.warning"] = { bg = "#9b6635", - fg = "#e1e2e7" + fg = "#f9f6f6" }, ["@type.builtin"] = { - fg = "#ec6a53" + fg = "#f06c53" }, ["@variable"] = { fg = "#6c6252", @@ -493,138 +493,138 @@ local highlights = { fg = "#9b6635" }, BufferCurrent = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, BufferCurrentERROR = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#a14834" }, BufferCurrentHINT = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#a27961" }, BufferCurrentINFO = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#725f3e" }, BufferCurrentIndex = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#725f3e" }, BufferCurrentMod = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#9b6635" }, BufferCurrentSign = { - bg = "#e1e2e7", - fg = "#e1e2e7" + bg = "#f9f6f6", + fg = "#f9f6f6" }, BufferCurrentTarget = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#db5234" }, BufferCurrentWARN = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#9b6635" }, BufferInactive = { - bg = "#e4e2e6", - fg = "#a87860" + bg = "#f3f0ef", + fg = "#ae7b5e" }, BufferInactiveERROR = { - bg = "#e4e2e6", - fg = "#c05c47" + bg = "#f3f0ef", + fg = "#c75d45" }, BufferInactiveHINT = { - bg = "#e4e2e6", - fg = "#836252" + bg = "#f3f0ef", + fg = "#896653" }, BufferInactiveINFO = { - bg = "#e4e2e6", - fg = "#8a7552" + bg = "#f3f0ef", + fg = "#907851" }, BufferInactiveIndex = { - bg = "#e4e2e6", + bg = "#f3f0ef", fg = "#91654c" }, BufferInactiveMod = { - bg = "#e4e2e6", - fg = "#b07b4e" + bg = "#f3f0ef", + fg = "#b67c4c" }, BufferInactiveSign = { - bg = "#e4e2e6", - fg = "#e1e2e7" + bg = "#f3f0ef", + fg = "#f9f6f6" }, BufferInactiveTarget = { - bg = "#e4e2e6", + bg = "#f3f0ef", fg = "#db5234" }, BufferInactiveWARN = { - bg = "#e4e2e6", - fg = "#b07b4e" + bg = "#f3f0ef", + fg = "#b67c4c" }, BufferLineIndicatorSelected = { fg = "#dfa9ad" }, BufferOffset = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#91654c" }, BufferTabpageFill = { - bg = "#e6e2e2", + bg = "#eee6e5", fg = "#91654c" }, BufferTabpages = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "NONE" }, BufferVisible = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#6c6252" }, BufferVisibleERROR = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#a14834" }, BufferVisibleHINT = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#a27961" }, BufferVisibleINFO = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#725f3e" }, BufferVisibleIndex = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#725f3e" }, BufferVisibleMod = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, BufferVisibleSign = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#725f3e" }, BufferVisibleTarget = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#db5234" }, BufferVisibleWARN = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, Character = { fg = "#715e4b" }, CmpDocumentation = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#6c6252" }, CmpDocumentationBorder = { - bg = "#e9e9ec", - fg = "#ec6a53" + bg = "#f0e9e8", + fg = "#f06c53" }, CmpGhostText = { fg = "#d1c4c2" @@ -769,10 +769,10 @@ local highlights = { fg = "#d79687" }, CodeBlock = { - bg = "#e9e9ec" + bg = "#f0e9e8" }, ColorColumn = { - bg = "#e9e9ed" + bg = "#faf8f8" }, Comment = { fg = "#d79687", @@ -791,14 +791,14 @@ local highlights = { }, Cursor = { bg = "#6c6252", - fg = "#e1e2e7" + fg = "#f9f6f6" }, CursorColumn = { bg = "#eae1e0" }, CursorIM = { bg = "#6c6252", - fg = "#e1e2e7" + fg = "#f9f6f6" }, CursorLine = { bg = "#eae1e0" @@ -807,7 +807,7 @@ local highlights = { fg = "#91654c" }, DapStoppedLine = { - bg = "#d2ccce" + bg = "#f1ded6" }, DashboardCenter = { fg = "#c37f87" @@ -872,19 +872,19 @@ local highlights = { fg = "#d1c4c2" }, DiagnosticVirtualTextError = { - bg = "#dbd1d7", + bg = "#f2e7e5", fg = "#a14834" }, DiagnosticVirtualTextHint = { - bg = "#d3cfd5", + bg = "#eee4e0", fg = "#a27961" }, DiagnosticVirtualTextInfo = { - bg = "#d4d2d6", + bg = "#f1e6df", fg = "#725f3e" }, DiagnosticVirtualTextWarn = { - bg = "#d2ccce", + bg = "#f1ded6", fg = "#9b6635" }, DiagnosticWarn = { @@ -894,13 +894,13 @@ local highlights = { link = "DiagnosticWarn" }, DiffAdd = { - bg = "#c5c2c7" + bg = "#e2d3cb" }, DiffChange = { - bg = "#ded7dd" + bg = "#f4ebe9" }, DiffDelete = { - bg = "#d9cace" + bg = "#f0dcd9" }, DiffText = { bg = "#e88f6a" @@ -909,7 +909,7 @@ local highlights = { fg = "#c77544" }, EndOfBuffer = { - fg = "#e1e2e7" + fg = "#f9f6f6" }, Error = { fg = "#a14834" @@ -929,15 +929,15 @@ local highlights = { fg = "#6c6252" }, FloatBorder = { - bg = "#e9e9ec", - fg = "#ec6a53" + bg = "#f0e9e8", + fg = "#f06c53" }, FloatTitle = { - bg = "#e9e9ec", - fg = "#ec6a53" + bg = "#f0e9e8", + fg = "#f06c53" }, FoldColumn = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#d79687" }, Folded = { @@ -1004,22 +1004,22 @@ local highlights = { link = "Headline1" }, Headline1 = { - bg = "#dbd9df" + bg = "#f6efed" }, Headline2 = { - bg = "#d9d7dc" + bg = "#f4edea" }, Headline3 = { - bg = "#d9d9de" + bg = "#f4f0ef" }, Headline4 = { - bg = "#d9d8de" + bg = "#f3efee" }, Headline5 = { - bg = "#dfdde3" + bg = "#f5f3f3" }, Headline6 = { - bg = "#dbdadf" + bg = "#f3f0f0" }, Hlargs = { fg = "#9b6635" @@ -1033,7 +1033,7 @@ local highlights = { fg = "#725f3e" }, HopNextKey2 = { - fg = "#a38c6b" + fg = "#af9266" }, HopUnmatched = { fg = "#dfa9ad" @@ -1061,7 +1061,7 @@ local highlights = { }, IncSearch = { bg = "#b15c00", - fg = "#e9e9ed" + fg = "#faf8f8" }, IndentBlanklineChar = { fg = "#d79687", @@ -1154,17 +1154,17 @@ local highlights = { fg = "#d79687" }, LspFloatWinBorder = { - fg = "#ec6a53" + fg = "#f06c53" }, LspFloatWinNormal = { - bg = "#e9e9ec" + bg = "#f0e9e8" }, LspInfoBorder = { - bg = "#e9e9ec", - fg = "#ec6a53" + bg = "#f0e9e8", + fg = "#f06c53" }, LspInlayHint = { - bg = "#dddae0", + bg = "#f6f0ee", fg = "#dfa9ad" }, LspKindArray = { @@ -1294,7 +1294,7 @@ local highlights = { fg = "#715e4b" }, LspSagaFinderSelection = { - fg = "#c48c75" + fg = "#dd9169" }, LspSagaHoverBorder = { fg = "#c77544" @@ -1306,7 +1306,7 @@ local highlights = { fg = "#db5234" }, LspSignatureActiveParameter = { - bg = "#cac1c1", + bg = "#ebcfc5", bold = true }, MatchParen = { @@ -1355,11 +1355,11 @@ local highlights = { } }, MiniStarterItem = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, MiniStarterItemBullet = { - fg = "#ec6a53" + fg = "#f06c53" }, MiniStarterItemPrefix = { fg = "#9b6635" @@ -1383,52 +1383,52 @@ local highlights = { fg = "#9b6635" }, MiniStatuslineInactive = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#c77544" }, MiniStatuslineModeCommand = { bg = "#9b6635", bold = true, - fg = "#e9e9ed" + fg = "#faf8f8" }, MiniStatuslineModeInsert = { bg = "#715e4b", bold = true, - fg = "#e9e9ed" + fg = "#faf8f8" }, MiniStatuslineModeNormal = { bg = "#c77544", bold = true, - fg = "#e9e9ed" + fg = "#faf8f8" }, MiniStatuslineModeOther = { bg = "#a27961", bold = true, - fg = "#e9e9ed" + fg = "#faf8f8" }, MiniStatuslineModeReplace = { bg = "#db5234", bold = true, - fg = "#e9e9ed" + fg = "#faf8f8" }, MiniStatuslineModeVisual = { bg = "#c37f87", bold = true, - fg = "#e9e9ed" + fg = "#faf8f8" }, MiniSurround = { bg = "#b15c00", - fg = "#e9e9ed" + fg = "#faf8f8" }, MiniTablineCurrent = { bg = "#d79687", fg = "#6c6252" }, MiniTablineFill = { - bg = "#e9e9ed" + bg = "#faf8f8" }, MiniTablineHidden = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#91654c" }, MiniTablineModifiedCurrent = { @@ -1436,19 +1436,19 @@ local highlights = { fg = "#9b6635" }, MiniTablineModifiedHidden = { - bg = "#e9e9ec", - fg = "#865e3d" + bg = "#f0e9e8", + fg = "#8e613b" }, MiniTablineModifiedVisible = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, MiniTablineTabpagesection = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "NONE" }, MiniTablineVisible = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#6c6252" }, MiniTestEmphasis = { @@ -1589,26 +1589,26 @@ local highlights = { fg = "#d79687" }, NeoTreeNormal = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, NeoTreeNormalNC = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, NeogitBranch = { fg = "#c37f87" }, NeogitDiffAddHighlight = { - bg = "#c5c2c7", + bg = "#e2d3cb", fg = "#725f3e" }, NeogitDiffContextHighlight = { - bg = "#cfbfbf", + bg = "#e3c7c2", fg = "#9b6635" }, NeogitDiffDeleteHighlight = { - bg = "#d9cace", + bg = "#f0dcd9", fg = "#db5234" }, NeogitHunkHeader = { @@ -1781,32 +1781,32 @@ local highlights = { fg = "#dfa9ad" }, Normal = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, NormalFloat = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#6c6252" }, NormalNC = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, NormalSB = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, NotifyBackground = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, NotifyDEBUGBody = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, NotifyDEBUGBorder = { - bg = "#e1e2e7", - fg = "#d7cdd1" + bg = "#f9f6f6", + fg = "#ebdbd8" }, NotifyDEBUGIcon = { fg = "#d79687" @@ -1815,12 +1815,12 @@ local highlights = { fg = "#d79687" }, NotifyERRORBody = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, NotifyERRORBorder = { - bg = "#e1e2e7", - fg = "#d0b1b1" + bg = "#f9f6f6", + fg = "#eabcb5" }, NotifyERRORIcon = { fg = "#a14834" @@ -1829,12 +1829,12 @@ local highlights = { fg = "#a14834" }, NotifyINFOBody = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, NotifyINFOBorder = { - bg = "#e1e2e7", - fg = "#c6b3a4" + bg = "#f9f6f6", + fg = "#e5be97" }, NotifyINFOIcon = { fg = "#725f3e" @@ -1843,12 +1843,12 @@ local highlights = { fg = "#725f3e" }, NotifyTRACEBody = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, NotifyTRACEBorder = { - bg = "#e1e2e7", - fg = "#c2b6bd" + bg = "#f9f6f6", + fg = "#d3c5c4" }, NotifyTRACEIcon = { fg = "#876060" @@ -1857,12 +1857,12 @@ local highlights = { fg = "#876060" }, NotifyWARNBody = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#6c6252" }, NotifyWARNBorder = { - bg = "#e1e2e7", - fg = "#cc9e85" + bg = "#f9f6f6", + fg = "#e7a87c" }, NotifyWARNIcon = { fg = "#9b6635" @@ -1890,11 +1890,11 @@ local highlights = { fg = "#d79687" }, NvimTreeNormal = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, NvimTreeNormalNC = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, NvimTreeOpenedFile = { @@ -1912,21 +1912,21 @@ local highlights = { fg = "#c77544" }, NvimTreeWinSeparator = { - bg = "#e9e9ec", - fg = "#e9e9ec" + bg = "#f0e9e8", + fg = "#f0e9e8" }, Operator = { fg = "#91654c" }, Pmenu = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#6c6252" }, PmenuSbar = { - bg = "#d8d8dc" + bg = "#e2d8d6" }, PmenuSel = { - bg = "#d4a69f" + bg = "#dcaa9f" }, PmenuThumb = { bg = "#d79687" @@ -1938,7 +1938,7 @@ local highlights = { fg = "#c77544" }, QuickFixLine = { - bg = "#c48c75", + bg = "#dd9169", bold = true }, RainbowDelimiterBlue = { @@ -2022,14 +2022,14 @@ local highlights = { }, Search = { bg = "#aa6330", - fg = "#6c6252" + fg = "#eae1e0" }, SignColumn = { - bg = "#e1e2e7", + bg = "#f9f6f6", fg = "#d79687" }, SignColumnSB = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#d79687" }, Sneak = { @@ -2037,7 +2037,7 @@ local highlights = { fg = "#eae1e0" }, SneakScope = { - bg = "#c48c75" + bg = "#dd9169" }, Special = { fg = "#db5234" @@ -2065,11 +2065,11 @@ local highlights = { fg = "#c37f87" }, StatusLine = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, StatusLineNC = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#d79687" }, String = { @@ -2077,7 +2077,7 @@ local highlights = { }, Substitute = { bg = "#db5234", - fg = "#e9e9ed" + fg = "#faf8f8" }, TSNodeKey = { bold = true, @@ -2108,25 +2108,25 @@ local highlights = { fg = "#9b6635" }, TabLine = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#d79687" }, TabLineFill = { - bg = "#e9e9ed" + bg = "#faf8f8" }, TabLineSel = { bg = "#c77544", - fg = "#e9e9ed" + fg = "#faf8f8" }, TargetWord = { fg = "#91654c" }, TelescopeBorder = { - bg = "#e9e9ec", - fg = "#ec6a53" + bg = "#f0e9e8", + fg = "#f06c53" }, TelescopeNormal = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#6c6252" }, Title = { @@ -2135,17 +2135,17 @@ local highlights = { }, Todo = { bg = "#9b6635", - fg = "#e1e2e7" + fg = "#f9f6f6" }, TreesitterContext = { - bg = "#d4a69f" + bg = "#dcaa9f" }, TroubleCount = { bg = "#d79687", fg = "#c37f87" }, TroubleNormal = { - bg = "#e9e9ec", + bg = "#f0e9e8", fg = "#9b6635" }, TroubleText = { @@ -2158,13 +2158,13 @@ local highlights = { underline = true }, VertSplit = { - fg = "#e9e9ed" + fg = "#faf8f8" }, Visual = { - bg = "#c48c75" + bg = "#dd9169" }, VisualNOS = { - bg = "#c48c75" + bg = "#dd9169" }, WarningMsg = { fg = "#9b6635" @@ -2176,7 +2176,7 @@ local highlights = { fg = "#c37f87" }, WhichKeyFloat = { - bg = "#e9e9ec" + bg = "#f0e9e8" }, WhichKeyGroup = { fg = "#c77544" @@ -2194,11 +2194,11 @@ local highlights = { fg = "#d79687" }, WildMenu = { - bg = "#c48c75" + bg = "#dd9169" }, WinSeparator = { bold = true, - fg = "#e9e9ed" + fg = "#faf8f8" }, YankyPut = { link = "IncSearch" @@ -2207,11 +2207,11 @@ local highlights = { link = "IncSearch" }, debugBreakpoint = { - bg = "#d4d2d6", + bg = "#f1e6df", fg = "#725f3e" }, debugPC = { - bg = "#e9e9ec" + bg = "#f0e9e8" }, diffAdded = { fg = "#725f3e" @@ -2269,7 +2269,7 @@ local highlights = { }, lCursor = { bg = "#6c6252", - fg = "#e1e2e7" + fg = "#f9f6f6" }, markdownCode = { fg = "#a27961" diff --git a/extras/lua/faroutmoon.lua b/extras/lua/faroutmoon.lua index eadb2de..70ff562 100644 --- a/extras/lua/faroutmoon.lua +++ b/extras/lua/faroutmoon.lua @@ -2022,7 +2022,7 @@ local highlights = { }, Search = { bg = "#3e68d7", - fg = "#c8d3f5" + fg = "#2f334d" }, SignColumn = { bg = "#222436", diff --git a/extras/lua/faroutnight.lua b/extras/lua/faroutnight.lua index 6846c33..553508b 100644 --- a/extras/lua/faroutnight.lua +++ b/extras/lua/faroutnight.lua @@ -1,15 +1,15 @@ local colors = { _name = "faroutnight", - bg = "#1a1b26", - bg_dark = "#16161e", - bg_float = "#16161e", + bg = "#0f0908", + bg_dark = "#1f1311", + bg_float = "#1f1311", bg_highlight = "#241816", - bg_popup = "#16161e", + bg_popup = "#1f1311", bg_search = "#f49d69", - bg_sidebar = "#16161e", - bg_statusline = "#16161e", - bg_visual = "#714f41", - black = "#15161e", + bg_sidebar = "#1f1311", + bg_statusline = "#1f1311", + bg_visual = "#6b442f", + black = "#0c0706", blue = "#d47d49", blue0 = "#f49d69", blue1 = "#BF472C", @@ -17,20 +17,20 @@ local colors = { blue5 = "#a67458", blue6 = "#BC907B", blue7 = "#703F29", - border = "#15161e", - border_highlight = "#9e3e2b", + border = "#0c0706", + border_highlight = "#9c3b25", comment = "#6B4035", cyan = "#a67458", dark3 = "#66292F", dark5 = "#A67458", delta = { - add = "#6b5f5a", - delete = "#733d37" + add = "#655649", + delete = "#6d3327" }, diff = { - add = "#353237", - change = "#272026", - delete = "#38262c", + add = "#2c231e", + change = "#1e110d", + delete = "#2e1712", text = "#703F29" }, error = "#df674c", @@ -196,10 +196,10 @@ local highlights = { link = "@type.builtin" }, ["@lsp.typemod.type.defaultLibrary"] = { - fg = "#9e3e2b" + fg = "#9c3b25" }, ["@lsp.typemod.typeAlias.defaultLibrary"] = { - fg = "#9e3e2b" + fg = "#9c3b25" }, ["@lsp.typemod.variable.callable"] = { link = "@function" @@ -254,14 +254,14 @@ local highlights = { fg = "#BC907B" }, ["@tag.delimiter.tsx"] = { - fg = "#9c603f" + fg = "#995a35" }, ["@tag.tsx"] = { fg = "#bf472c" }, ["@text.danger"] = { bg = "#df674c", - fg = "#1a1b26" + fg = "#0f0908" }, ["@text.diff.add"] = { link = "DiffAdd" @@ -308,10 +308,10 @@ local highlights = { }, ["@text.warning"] = { bg = "#f2a766", - fg = "#1a1b26" + fg = "#0f0908" }, ["@type.builtin"] = { - fg = "#9e3e2b" + fg = "#9c3b25" }, ["@variable"] = { fg = "#E0CCAE", @@ -493,138 +493,138 @@ local highlights = { fg = "#f2a766" }, BufferCurrent = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, BufferCurrentERROR = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#df674c" }, BufferCurrentHINT = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#c69478" }, BufferCurrentINFO = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#A4895C" }, BufferCurrentIndex = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#A4895C" }, BufferCurrentMod = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#f2a766" }, BufferCurrentSign = { - bg = "#1a1b26", - fg = "#1a1b26" + bg = "#0f0908", + fg = "#0f0908" }, BufferCurrentTarget = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#bf472c" }, BufferCurrentWARN = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#f2a766" }, BufferInactive = { - bg = "#1e1a20", - fg = "#8a624e" + bg = "#170f0e", + fg = "#885f48" }, BufferInactiveERROR = { - bg = "#1e1a20", - fg = "#b85844" + bg = "#170f0e", + fg = "#b5543e" }, BufferInactiveHINT = { - bg = "#1e1a20", - fg = "#a47c68" + bg = "#170f0e", + fg = "#a17862" }, BufferInactiveINFO = { - bg = "#1e1a20", - fg = "#887351" + bg = "#170f0e", + fg = "#866f4b" }, BufferInactiveIndex = { - bg = "#1e1a20", + bg = "#170f0e", fg = "#A67458" }, BufferInactiveMod = { - bg = "#1e1a20", - fg = "#c78b59" + bg = "#170f0e", + fg = "#c58753" }, BufferInactiveSign = { - bg = "#1e1a20", - fg = "#1a1b26" + bg = "#170f0e", + fg = "#0f0908" }, BufferInactiveTarget = { - bg = "#1e1a20", + bg = "#170f0e", fg = "#bf472c" }, BufferInactiveWARN = { - bg = "#1e1a20", - fg = "#c78b59" + bg = "#170f0e", + fg = "#c58753" }, BufferLineIndicatorSelected = { fg = "#66292F" }, BufferOffset = { - bg = "#16161e", + bg = "#1f1311", fg = "#A67458" }, BufferTabpageFill = { - bg = "#221919", + bg = "#201513", fg = "#A67458" }, BufferTabpages = { - bg = "#16161e", + bg = "#1f1311", fg = "NONE" }, BufferVisible = { - bg = "#16161e", + bg = "#1f1311", fg = "#E0CCAE" }, BufferVisibleERROR = { - bg = "#16161e", + bg = "#1f1311", fg = "#df674c" }, BufferVisibleHINT = { - bg = "#16161e", + bg = "#1f1311", fg = "#c69478" }, BufferVisibleINFO = { - bg = "#16161e", + bg = "#1f1311", fg = "#A4895C" }, BufferVisibleIndex = { - bg = "#16161e", + bg = "#1f1311", fg = "#A4895C" }, BufferVisibleMod = { - bg = "#16161e", + bg = "#1f1311", fg = "#f2a766" }, BufferVisibleSign = { - bg = "#16161e", + bg = "#1f1311", fg = "#A4895C" }, BufferVisibleTarget = { - bg = "#16161e", + bg = "#1f1311", fg = "#bf472c" }, BufferVisibleWARN = { - bg = "#16161e", + bg = "#1f1311", fg = "#f2a766" }, Character = { fg = "#a4896f" }, CmpDocumentation = { - bg = "#16161e", + bg = "#1f1311", fg = "#E0CCAE" }, CmpDocumentationBorder = { - bg = "#16161e", - fg = "#9e3e2b" + bg = "#1f1311", + fg = "#9c3b25" }, CmpGhostText = { fg = "#392D2B" @@ -769,10 +769,10 @@ local highlights = { fg = "#6B4035" }, CodeBlock = { - bg = "#16161e" + bg = "#1f1311" }, ColorColumn = { - bg = "#15161e" + bg = "#0c0706" }, Comment = { fg = "#6B4035", @@ -791,14 +791,14 @@ local highlights = { }, Cursor = { bg = "#E0CCAE", - fg = "#1a1b26" + fg = "#0f0908" }, CursorColumn = { bg = "#241816" }, CursorIM = { bg = "#E0CCAE", - fg = "#1a1b26" + fg = "#0f0908" }, CursorLine = { bg = "#241816" @@ -807,7 +807,7 @@ local highlights = { fg = "#A67458" }, DapStoppedLine = { - bg = "#30292c" + bg = "#261911" }, DashboardCenter = { fg = "#8a4b53" @@ -872,19 +872,19 @@ local highlights = { fg = "#392D2B" }, DiagnosticVirtualTextError = { - bg = "#2e232a", + bg = "#24120f", fg = "#df674c" }, DiagnosticVirtualTextHint = { - bg = "#2b272e", + bg = "#211713", fg = "#c69478" }, DiagnosticVirtualTextInfo = { - bg = "#28262b", + bg = "#1e1610", fg = "#A4895C" }, DiagnosticVirtualTextWarn = { - bg = "#30292c", + bg = "#261911", fg = "#f2a766" }, DiagnosticWarn = { @@ -894,13 +894,13 @@ local highlights = { link = "DiagnosticWarn" }, DiffAdd = { - bg = "#353237" + bg = "#2c231e" }, DiffChange = { - bg = "#272026" + bg = "#1e110d" }, DiffDelete = { - bg = "#38262c" + bg = "#2e1712" }, DiffText = { bg = "#703F29" @@ -909,7 +909,7 @@ local highlights = { fg = "#d47d49" }, EndOfBuffer = { - fg = "#1a1b26" + fg = "#0f0908" }, Error = { fg = "#df674c" @@ -929,15 +929,15 @@ local highlights = { fg = "#E0CCAE" }, FloatBorder = { - bg = "#16161e", - fg = "#9e3e2b" + bg = "#1f1311", + fg = "#9c3b25" }, FloatTitle = { - bg = "#16161e", - fg = "#9e3e2b" + bg = "#1f1311", + fg = "#9c3b25" }, FoldColumn = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#6B4035" }, Folded = { @@ -1004,22 +1004,22 @@ local highlights = { link = "Headline1" }, Headline1 = { - bg = "#232028" + bg = "#190f0b" }, Headline2 = { - bg = "#252229" + bg = "#1a110d" }, Headline3 = { - bg = "#21212a" + bg = "#160f0d" }, Headline4 = { - bg = "#23212a" + bg = "#18100e" }, Headline5 = { - bg = "#201d28" + bg = "#150c0c" }, Headline6 = { - bg = "#21202a" + bg = "#160f0e" }, Hlargs = { fg = "#f2a766" @@ -1033,7 +1033,7 @@ local highlights = { fg = "#A4895C" }, HopNextKey2 = { - fg = "#6d5d46" + fg = "#68563a" }, HopUnmatched = { fg = "#66292F" @@ -1061,7 +1061,7 @@ local highlights = { }, IncSearch = { bg = "#ff9e64", - fg = "#15161e" + fg = "#0c0706" }, IndentBlanklineChar = { fg = "#6B4035", @@ -1154,17 +1154,17 @@ local highlights = { fg = "#6B4035" }, LspFloatWinBorder = { - fg = "#9e3e2b" + fg = "#9c3b25" }, LspFloatWinNormal = { - bg = "#16161e" + bg = "#1f1311" }, LspInfoBorder = { - bg = "#16161e", - fg = "#9e3e2b" + bg = "#1f1311", + fg = "#9c3b25" }, LspInlayHint = { - bg = "#231f26", + bg = "#190e0b", fg = "#66292F" }, LspKindArray = { @@ -1294,7 +1294,7 @@ local highlights = { fg = "#a4896f" }, LspSagaFinderSelection = { - fg = "#714f41" + fg = "#6b442f" }, LspSagaHoverBorder = { fg = "#d47d49" @@ -1306,7 +1306,7 @@ local highlights = { fg = "#bf472c" }, LspSignatureActiveParameter = { - bg = "#3d3031", + bg = "#342118", bold = true }, MatchParen = { @@ -1355,11 +1355,11 @@ local highlights = { } }, MiniStarterItem = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, MiniStarterItemBullet = { - fg = "#9e3e2b" + fg = "#9c3b25" }, MiniStarterItemPrefix = { fg = "#f2a766" @@ -1383,52 +1383,52 @@ local highlights = { fg = "#F2A766" }, MiniStatuslineInactive = { - bg = "#16161e", + bg = "#1f1311", fg = "#d47d49" }, MiniStatuslineModeCommand = { bg = "#f2a766", bold = true, - fg = "#15161e" + fg = "#0c0706" }, MiniStatuslineModeInsert = { bg = "#a4896f", bold = true, - fg = "#15161e" + fg = "#0c0706" }, MiniStatuslineModeNormal = { bg = "#d47d49", bold = true, - fg = "#15161e" + fg = "#0c0706" }, MiniStatuslineModeOther = { bg = "#c69478", bold = true, - fg = "#15161e" + fg = "#0c0706" }, MiniStatuslineModeReplace = { bg = "#bf472c", bold = true, - fg = "#15161e" + fg = "#0c0706" }, MiniStatuslineModeVisual = { bg = "#8a4b53", bold = true, - fg = "#15161e" + fg = "#0c0706" }, MiniSurround = { bg = "#ff9e64", - fg = "#15161e" + fg = "#0c0706" }, MiniTablineCurrent = { bg = "#6B4035", fg = "#E0CCAE" }, MiniTablineFill = { - bg = "#15161e" + bg = "#0c0706" }, MiniTablineHidden = { - bg = "#16161e", + bg = "#1f1311", fg = "#A67458" }, MiniTablineModifiedCurrent = { @@ -1436,19 +1436,19 @@ local highlights = { fg = "#f2a766" }, MiniTablineModifiedHidden = { - bg = "#16161e", - fg = "#b17d53" + bg = "#1f1311", + fg = "#ae784a" }, MiniTablineModifiedVisible = { - bg = "#16161e", + bg = "#1f1311", fg = "#f2a766" }, MiniTablineTabpagesection = { - bg = "#16161e", + bg = "#1f1311", fg = "NONE" }, MiniTablineVisible = { - bg = "#16161e", + bg = "#1f1311", fg = "#E0CCAE" }, MiniTestEmphasis = { @@ -1589,26 +1589,26 @@ local highlights = { fg = "#6B4035" }, NeoTreeNormal = { - bg = "#16161e", + bg = "#1f1311", fg = "#F2A766" }, NeoTreeNormalNC = { - bg = "#16161e", + bg = "#1f1311", fg = "#F2A766" }, NeogitBranch = { fg = "#8a4b53" }, NeogitDiffAddHighlight = { - bg = "#353237", + bg = "#2c231e", fg = "#A4895C" }, NeogitDiffContextHighlight = { - bg = "#432e2e", + bg = "#3d251f", fg = "#F2A766" }, NeogitDiffDeleteHighlight = { - bg = "#38262c", + bg = "#2e1712", fg = "#BF472C" }, NeogitHunkHeader = { @@ -1781,32 +1781,32 @@ local highlights = { fg = "#66292F" }, Normal = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, NormalFloat = { - bg = "#16161e", + bg = "#1f1311", fg = "#E0CCAE" }, NormalNC = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, NormalSB = { - bg = "#16161e", + bg = "#1f1311", fg = "#F2A766" }, NotifyBackground = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, NotifyDEBUGBody = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, NotifyDEBUGBorder = { - bg = "#1a1b26", - fg = "#32262b" + bg = "#0f0908", + fg = "#2b1a16" }, NotifyDEBUGIcon = { fg = "#6B4035" @@ -1815,12 +1815,12 @@ local highlights = { fg = "#6B4035" }, NotifyERRORBody = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, NotifyERRORBorder = { - bg = "#1a1b26", - fg = "#553231" + bg = "#0f0908", + fg = "#4d251c" }, NotifyERRORIcon = { fg = "#df674c" @@ -1829,12 +1829,12 @@ local highlights = { fg = "#df674c" }, NotifyINFOBody = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, NotifyINFOBorder = { - bg = "#1a1b26", - fg = "#433c36" + bg = "#0f0908", + fg = "#3c2f21" }, NotifyINFOIcon = { fg = "#A4895C" @@ -1843,12 +1843,12 @@ local highlights = { fg = "#A4895C" }, NotifyTRACEBody = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, NotifyTRACEBorder = { - bg = "#1a1b26", - fg = "#43383f" + bg = "#0f0908", + fg = "#3c2b2a" }, NotifyTRACEIcon = { fg = "#a47a7a" @@ -1857,12 +1857,12 @@ local highlights = { fg = "#a47a7a" }, NotifyWARNBody = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#E0CCAE" }, NotifyWARNBorder = { - bg = "#1a1b26", - fg = "#5b4539" + bg = "#0f0908", + fg = "#533824" }, NotifyWARNIcon = { fg = "#f2a766" @@ -1890,11 +1890,11 @@ local highlights = { fg = "#6B4035" }, NvimTreeNormal = { - bg = "#16161e", + bg = "#1f1311", fg = "#F2A766" }, NvimTreeNormalNC = { - bg = "#16161e", + bg = "#1f1311", fg = "#F2A766" }, NvimTreeOpenedFile = { @@ -1912,21 +1912,21 @@ local highlights = { fg = "#d47d49" }, NvimTreeWinSeparator = { - bg = "#16161e", - fg = "#16161e" + bg = "#1f1311", + fg = "#1f1311" }, Operator = { fg = "#a67458" }, Pmenu = { - bg = "#16161e", + bg = "#1f1311", fg = "#E0CCAE" }, PmenuSbar = { - bg = "#222229" + bg = "#2a1f1d" }, PmenuSel = { - bg = "#5b3932" + bg = "#59352c" }, PmenuThumb = { bg = "#6B4035" @@ -1938,7 +1938,7 @@ local highlights = { fg = "#d47d49" }, QuickFixLine = { - bg = "#714f41", + bg = "#6b442f", bold = true }, RainbowDelimiterBlue = { @@ -2022,14 +2022,14 @@ local highlights = { }, Search = { bg = "#f49d69", - fg = "#E0CCAE" + fg = "#241816" }, SignColumn = { - bg = "#1a1b26", + bg = "#0f0908", fg = "#6B4035" }, SignColumnSB = { - bg = "#16161e", + bg = "#1f1311", fg = "#6B4035" }, Sneak = { @@ -2037,7 +2037,7 @@ local highlights = { fg = "#241816" }, SneakScope = { - bg = "#714f41" + bg = "#6b442f" }, Special = { fg = "#BF472C" @@ -2065,11 +2065,11 @@ local highlights = { fg = "#8a4b53" }, StatusLine = { - bg = "#16161e", + bg = "#1f1311", fg = "#F2A766" }, StatusLineNC = { - bg = "#16161e", + bg = "#1f1311", fg = "#6B4035" }, String = { @@ -2077,7 +2077,7 @@ local highlights = { }, Substitute = { bg = "#bf472c", - fg = "#15161e" + fg = "#0c0706" }, TSNodeKey = { bold = true, @@ -2108,25 +2108,25 @@ local highlights = { fg = "#f2a766" }, TabLine = { - bg = "#16161e", + bg = "#1f1311", fg = "#6B4035" }, TabLineFill = { - bg = "#15161e" + bg = "#0c0706" }, TabLineSel = { bg = "#d47d49", - fg = "#15161e" + fg = "#0c0706" }, TargetWord = { fg = "#a67458" }, TelescopeBorder = { - bg = "#16161e", - fg = "#9e3e2b" + bg = "#1f1311", + fg = "#9c3b25" }, TelescopeNormal = { - bg = "#16161e", + bg = "#1f1311", fg = "#E0CCAE" }, Title = { @@ -2135,17 +2135,17 @@ local highlights = { }, Todo = { bg = "#f2a766", - fg = "#1a1b26" + fg = "#0f0908" }, TreesitterContext = { - bg = "#5b3932" + bg = "#59352c" }, TroubleCount = { bg = "#6B4035", fg = "#8a4b53" }, TroubleNormal = { - bg = "#16161e", + bg = "#1f1311", fg = "#F2A766" }, TroubleText = { @@ -2158,13 +2158,13 @@ local highlights = { underline = true }, VertSplit = { - fg = "#15161e" + fg = "#0c0706" }, Visual = { - bg = "#714f41" + bg = "#6b442f" }, VisualNOS = { - bg = "#714f41" + bg = "#6b442f" }, WarningMsg = { fg = "#f2a766" @@ -2176,7 +2176,7 @@ local highlights = { fg = "#8a4b53" }, WhichKeyFloat = { - bg = "#16161e" + bg = "#1f1311" }, WhichKeyGroup = { fg = "#d47d49" @@ -2194,11 +2194,11 @@ local highlights = { fg = "#6B4035" }, WildMenu = { - bg = "#714f41" + bg = "#6b442f" }, WinSeparator = { bold = true, - fg = "#15161e" + fg = "#0c0706" }, YankyPut = { link = "IncSearch" @@ -2207,11 +2207,11 @@ local highlights = { link = "IncSearch" }, debugBreakpoint = { - bg = "#28262b", + bg = "#1e1610", fg = "#A4895C" }, debugPC = { - bg = "#16161e" + bg = "#1f1311" }, diffAdded = { fg = "#A4895C" @@ -2269,7 +2269,7 @@ local highlights = { }, lCursor = { bg = "#E0CCAE", - fg = "#1a1b26" + fg = "#0f0908" }, markdownCode = { fg = "#c69478" diff --git a/extras/lua/faroutstorm.lua b/extras/lua/faroutstorm.lua index 0f886d7..90093f5 100644 --- a/extras/lua/faroutstorm.lua +++ b/extras/lua/faroutstorm.lua @@ -2022,7 +2022,7 @@ local highlights = { }, Search = { bg = "#f49d69", - fg = "#E0CCAE" + fg = "#241816" }, SignColumn = { bg = "#0f0908", diff --git a/extras/prism/faroutday.js b/extras/prism/faroutday.js index 6879cf8..5124fa5 100644 --- a/extras/prism/faroutday.js +++ b/extras/prism/faroutday.js @@ -1,7 +1,7 @@ module.exports = { plain: { color: "#6c6252", - backgroundColor: "#e1e2e7", + backgroundColor: "#f9f6f6", }, styles: [ { diff --git a/extras/prism/faroutnight.js b/extras/prism/faroutnight.js index 448e365..4f1b540 100644 --- a/extras/prism/faroutnight.js +++ b/extras/prism/faroutnight.js @@ -1,7 +1,7 @@ module.exports = { plain: { color: "#E0CCAE", - backgroundColor: "#1a1b26", + backgroundColor: "#0f0908", }, styles: [ { diff --git a/extras/sublime/faroutday.tmTheme b/extras/sublime/faroutday.tmTheme index 6cd5d6a..c8be601 100644 --- a/extras/sublime/faroutday.tmTheme +++ b/extras/sublime/faroutday.tmTheme @@ -17,7 +17,7 @@ activeGuide #363b54 background - #e1e2e7 + #f9f6f6 caret #DBC08A findHighlight diff --git a/extras/sublime/faroutnight.tmTheme b/extras/sublime/faroutnight.tmTheme index df09dcf..0f718a9 100644 --- a/extras/sublime/faroutnight.tmTheme +++ b/extras/sublime/faroutnight.tmTheme @@ -17,7 +17,7 @@ activeGuide #363b54 background - #1a1b26 + #0f0908 caret #DBC08A findHighlight diff --git a/extras/terminator/faroutday.conf b/extras/terminator/faroutday.conf index 56ec17b..d67a98d 100644 --- a/extras/terminator/faroutday.conf +++ b/extras/terminator/faroutday.conf @@ -1,5 +1,5 @@ [[FarOut Day]] - palette = "#e9e9ed:#db5234:#715e4b:#9b6635:#c77544:#c37f87:#91654c:#9b6635:#d1c4c2:#db5234:#715e4b:#9b6635:#c77544:#c37f87:#91654c:#876060" - background_color = "#e1e2e7" + palette = "#faf8f8:#db5234:#715e4b:#9b6635:#c77544:#c37f87:#91654c:#9b6635:#d1c4c2:#db5234:#715e4b:#9b6635:#c77544:#c37f87:#91654c:#876060" + background_color = "#f9f6f6" foreground_color = "#6c6252" \ No newline at end of file diff --git a/extras/terminator/faroutnight.conf b/extras/terminator/faroutnight.conf index b919d36..fd428b5 100644 --- a/extras/terminator/faroutnight.conf +++ b/extras/terminator/faroutnight.conf @@ -1,5 +1,5 @@ [[FarOut]] - palette = "#15161e:#bf472c:#a4896f:#f2a766:#d47d49:#8a4b53:#a67458:#F2A766:#392D2B:#bf472c:#a4896f:#f2a766:#d47d49:#8a4b53:#a67458:#a47a7a" - background_color = "#1a1b26" + palette = "#0c0706:#bf472c:#a4896f:#f2a766:#d47d49:#8a4b53:#a67458:#F2A766:#392D2B:#bf472c:#a4896f:#f2a766:#d47d49:#8a4b53:#a67458:#a47a7a" + background_color = "#0f0908" foreground_color = "#E0CCAE" \ No newline at end of file diff --git a/extras/tilix/faroutday.json b/extras/tilix/faroutday.json index 2272744..eeb429e 100644 --- a/extras/tilix/faroutday.json +++ b/extras/tilix/faroutday.json @@ -3,9 +3,9 @@ "comment": "", "use-theme-colors": false, "foreground-color": "#6c6252", - "background-color": "#e1e2e7", + "background-color": "#f9f6f6", "palette": [ - "#e9e9ed", + "#faf8f8", "#db5234", "#715e4b", "#9b6635", diff --git a/extras/tilix/faroutnight.json b/extras/tilix/faroutnight.json index 597dc75..ed3dad3 100644 --- a/extras/tilix/faroutnight.json +++ b/extras/tilix/faroutnight.json @@ -3,9 +3,9 @@ "comment": "", "use-theme-colors": false, "foreground-color": "#E0CCAE", - "background-color": "#1a1b26", + "background-color": "#0f0908", "palette": [ - "#15161e", + "#0c0706", "#bf472c", "#a4896f", "#f2a766", diff --git a/extras/tmux/faroutday.tmux b/extras/tmux/faroutday.tmux index b7e236a..7dee4e7 100644 --- a/extras/tmux/faroutday.tmux +++ b/extras/tmux/faroutday.tmux @@ -13,7 +13,7 @@ set -g pane-active-border-style "fg=#c77544" set -g status "on" set -g status-justify "left" -set -g status-style "fg=#c77544,bg=#e9e9ec" +set -g status-style "fg=#c77544,bg=#f0e9e8" set -g status-left-length "100" set -g status-right-length "100" @@ -21,18 +21,18 @@ set -g status-right-length "100" set -g status-left-style NONE set -g status-right-style NONE -set -g status-left "#[fg=#e9e9ed,bg=#c77544,bold] #S #[fg=#c77544,bg=#e9e9ec,nobold,nounderscore,noitalics]" -set -g status-right "#[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#e9e9ec] #{prefix_highlight} #[fg=#d79687,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687] %Y-%m-%d  %I:%M %p #[fg=#c77544,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#e9e9ed,bg=#c77544,bold] #h " +set -g status-left "#[fg=#faf8f8,bg=#c77544,bold] #S #[fg=#c77544,bg=#f0e9e8,nobold,nounderscore,noitalics]" +set -g status-right "#[fg=#f0e9e8,bg=#f0e9e8,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#f0e9e8] #{prefix_highlight} #[fg=#d79687,bg=#f0e9e8,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687] %Y-%m-%d  %I:%M %p #[fg=#c77544,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#faf8f8,bg=#c77544,bold] #h " if-shell '[ "$(tmux show-option -gqv "clock-mode-style")" == "24" ]' { - set -g status-right "#[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#e9e9ec] #{prefix_highlight} #[fg=#d79687,bg=#e9e9ec,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687] %Y-%m-%d  %H:%M #[fg=#c77544,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#e9e9ed,bg=#c77544,bold] #h " + set -g status-right "#[fg=#f0e9e8,bg=#f0e9e8,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#f0e9e8] #{prefix_highlight} #[fg=#d79687,bg=#f0e9e8,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687] %Y-%m-%d  %H:%M #[fg=#c77544,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#faf8f8,bg=#c77544,bold] #h " } -setw -g window-status-activity-style "underscore,fg=#9b6635,bg=#e9e9ec" +setw -g window-status-activity-style "underscore,fg=#9b6635,bg=#f0e9e8" setw -g window-status-separator "" -setw -g window-status-style "NONE,fg=#9b6635,bg=#e9e9ec" -setw -g window-status-format "#[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]#[default] #I  #W #F #[fg=#e9e9ec,bg=#e9e9ec,nobold,nounderscore,noitalics]" -setw -g window-status-current-format "#[fg=#e9e9ec,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687,bold] #I  #W #F #[fg=#d79687,bg=#e9e9ec,nobold,nounderscore,noitalics]" +setw -g window-status-style "NONE,fg=#9b6635,bg=#f0e9e8" +setw -g window-status-format "#[fg=#f0e9e8,bg=#f0e9e8,nobold,nounderscore,noitalics]#[default] #I  #W #F #[fg=#f0e9e8,bg=#f0e9e8,nobold,nounderscore,noitalics]" +setw -g window-status-current-format "#[fg=#f0e9e8,bg=#d79687,nobold,nounderscore,noitalics]#[fg=#c77544,bg=#d79687,bold] #I  #W #F #[fg=#d79687,bg=#f0e9e8,nobold,nounderscore,noitalics]" # tmux-plugins/tmux-prefix-highlight support -set -g @prefix_highlight_output_prefix "#[fg=#9b6635]#[bg=#e9e9ec]#[fg=#e9e9ec]#[bg=#9b6635]" +set -g @prefix_highlight_output_prefix "#[fg=#9b6635]#[bg=#f0e9e8]#[fg=#f0e9e8]#[bg=#9b6635]" set -g @prefix_highlight_output_suffix "" diff --git a/extras/tmux/faroutnight.tmux b/extras/tmux/faroutnight.tmux index 6bcfef8..6f1764c 100644 --- a/extras/tmux/faroutnight.tmux +++ b/extras/tmux/faroutnight.tmux @@ -13,7 +13,7 @@ set -g pane-active-border-style "fg=#d47d49" set -g status "on" set -g status-justify "left" -set -g status-style "fg=#d47d49,bg=#16161e" +set -g status-style "fg=#d47d49,bg=#1f1311" set -g status-left-length "100" set -g status-right-length "100" @@ -21,18 +21,18 @@ set -g status-right-length "100" set -g status-left-style NONE set -g status-right-style NONE -set -g status-left "#[fg=#15161e,bg=#d47d49,bold] #S #[fg=#d47d49,bg=#16161e,nobold,nounderscore,noitalics]" -set -g status-right "#[fg=#16161e,bg=#16161e,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#16161e] #{prefix_highlight} #[fg=#6B4035,bg=#16161e,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035] %Y-%m-%d  %I:%M %p #[fg=#d47d49,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#15161e,bg=#d47d49,bold] #h " +set -g status-left "#[fg=#0c0706,bg=#d47d49,bold] #S #[fg=#d47d49,bg=#1f1311,nobold,nounderscore,noitalics]" +set -g status-right "#[fg=#1f1311,bg=#1f1311,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#1f1311] #{prefix_highlight} #[fg=#6B4035,bg=#1f1311,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035] %Y-%m-%d  %I:%M %p #[fg=#d47d49,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#0c0706,bg=#d47d49,bold] #h " if-shell '[ "$(tmux show-option -gqv "clock-mode-style")" == "24" ]' { - set -g status-right "#[fg=#16161e,bg=#16161e,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#16161e] #{prefix_highlight} #[fg=#6B4035,bg=#16161e,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035] %Y-%m-%d  %H:%M #[fg=#d47d49,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#15161e,bg=#d47d49,bold] #h " + set -g status-right "#[fg=#1f1311,bg=#1f1311,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#1f1311] #{prefix_highlight} #[fg=#6B4035,bg=#1f1311,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035] %Y-%m-%d  %H:%M #[fg=#d47d49,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#0c0706,bg=#d47d49,bold] #h " } -setw -g window-status-activity-style "underscore,fg=#F2A766,bg=#16161e" +setw -g window-status-activity-style "underscore,fg=#F2A766,bg=#1f1311" setw -g window-status-separator "" -setw -g window-status-style "NONE,fg=#F2A766,bg=#16161e" -setw -g window-status-format "#[fg=#16161e,bg=#16161e,nobold,nounderscore,noitalics]#[default] #I  #W #F #[fg=#16161e,bg=#16161e,nobold,nounderscore,noitalics]" -setw -g window-status-current-format "#[fg=#16161e,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035,bold] #I  #W #F #[fg=#6B4035,bg=#16161e,nobold,nounderscore,noitalics]" +setw -g window-status-style "NONE,fg=#F2A766,bg=#1f1311" +setw -g window-status-format "#[fg=#1f1311,bg=#1f1311,nobold,nounderscore,noitalics]#[default] #I  #W #F #[fg=#1f1311,bg=#1f1311,nobold,nounderscore,noitalics]" +setw -g window-status-current-format "#[fg=#1f1311,bg=#6B4035,nobold,nounderscore,noitalics]#[fg=#d47d49,bg=#6B4035,bold] #I  #W #F #[fg=#6B4035,bg=#1f1311,nobold,nounderscore,noitalics]" # tmux-plugins/tmux-prefix-highlight support -set -g @prefix_highlight_output_prefix "#[fg=#f2a766]#[bg=#16161e]#[fg=#16161e]#[bg=#f2a766]" +set -g @prefix_highlight_output_prefix "#[fg=#f2a766]#[bg=#1f1311]#[fg=#1f1311]#[bg=#f2a766]" set -g @prefix_highlight_output_suffix "" diff --git a/extras/wezterm/faroutday.toml b/extras/wezterm/faroutday.toml index 9fd63a2..8f50be8 100644 --- a/extras/wezterm/faroutday.toml +++ b/extras/wezterm/faroutday.toml @@ -1,23 +1,23 @@ [colors] foreground = "#6c6252" -background = "#e1e2e7" +background = "#f9f6f6" cursor_bg = "#6c6252" cursor_border = "#6c6252" -cursor_fg = "#e1e2e7" -selection_bg = "#c48c75" +cursor_fg = "#f9f6f6" +selection_bg = "#dd9169" selection_fg = "#6c6252" split = "#c77544" compose_cursor = "#b15c00" -ansi = ["#e9e9ed", "#db5234", "#715e4b", "#9b6635", "#c77544", "#c37f87", "#91654c", "#9b6635"] +ansi = ["#faf8f8", "#db5234", "#715e4b", "#9b6635", "#c77544", "#c37f87", "#91654c", "#9b6635"] brights = ["#d1c4c2", "#db5234", "#715e4b", "#9b6635", "#c77544", "#c37f87", "#91654c", "#6c6252"] [colors.tab_bar] -inactive_tab_edge = "#e9e9ec" -background = "#e1e2e7" +inactive_tab_edge = "#f0e9e8" +background = "#f9f6f6" [colors.tab_bar.active_tab] -fg_color = "#e9e9ec" +fg_color = "#f0e9e8" bg_color = "#c77544" [colors.tab_bar.inactive_tab] @@ -31,12 +31,12 @@ bg_color = "#eae1e0" [colors.tab_bar.new_tab_hover] fg_color = "#c77544" -bg_color = "#e1e2e7" +bg_color = "#f9f6f6" intensity = "Bold" [colors.tab_bar.new_tab] fg_color = "#c77544" -bg_color = "#e1e2e7" +bg_color = "#f9f6f6" [metadata] aliases = [] diff --git a/extras/wezterm/faroutnight.toml b/extras/wezterm/faroutnight.toml index 391ff79..4f8acda 100644 --- a/extras/wezterm/faroutnight.toml +++ b/extras/wezterm/faroutnight.toml @@ -1,23 +1,23 @@ [colors] foreground = "#E0CCAE" -background = "#1a1b26" +background = "#0f0908" cursor_bg = "#E0CCAE" cursor_border = "#E0CCAE" -cursor_fg = "#1a1b26" -selection_bg = "#714f41" +cursor_fg = "#0f0908" +selection_bg = "#6b442f" selection_fg = "#E0CCAE" split = "#d47d49" compose_cursor = "#ff9e64" -ansi = ["#15161e", "#bf472c", "#a4896f", "#f2a766", "#d47d49", "#8a4b53", "#a67458", "#F2A766"] +ansi = ["#0c0706", "#bf472c", "#a4896f", "#f2a766", "#d47d49", "#8a4b53", "#a67458", "#F2A766"] brights = ["#392D2B", "#bf472c", "#a4896f", "#f2a766", "#d47d49", "#8a4b53", "#a67458", "#E0CCAE"] [colors.tab_bar] -inactive_tab_edge = "#16161e" -background = "#1a1b26" +inactive_tab_edge = "#1f1311" +background = "#0f0908" [colors.tab_bar.active_tab] -fg_color = "#16161e" +fg_color = "#1f1311" bg_color = "#d47d49" [colors.tab_bar.inactive_tab] @@ -31,12 +31,12 @@ bg_color = "#241816" [colors.tab_bar.new_tab_hover] fg_color = "#d47d49" -bg_color = "#1a1b26" +bg_color = "#0f0908" intensity = "Bold" [colors.tab_bar.new_tab] fg_color = "#d47d49" -bg_color = "#1a1b26" +bg_color = "#0f0908" [metadata] aliases = [] diff --git a/extras/windows_terminal/faroutday.json b/extras/windows_terminal/faroutday.json index 22e3510..12dc971 100644 --- a/extras/windows_terminal/faroutday.json +++ b/extras/windows_terminal/faroutday.json @@ -1,8 +1,8 @@ # Add the following object to your Windows Terminal configuration # https://learn.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes#creating-your-own-color-scheme { - "background": "#e1e2e7", - "black": "#e9e9ed", + "background": "#f9f6f6", + "black": "#faf8f8", "blue": "#c77544", "brightBlack": "#d1c4c2", "brightBlue": "#c77544", @@ -19,7 +19,7 @@ "name": "FarOut Day", "purple": "#c37f87", "red": "#db5234", - "selectionBackground": "#c48c75", + "selectionBackground": "#dd9169", "white": "#9b6635", "yellow": "#9b6635" } diff --git a/extras/windows_terminal/faroutnight.json b/extras/windows_terminal/faroutnight.json index 7a4c5ad..24e88bf 100644 --- a/extras/windows_terminal/faroutnight.json +++ b/extras/windows_terminal/faroutnight.json @@ -1,8 +1,8 @@ # Add the following object to your Windows Terminal configuration # https://learn.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes#creating-your-own-color-scheme { - "background": "#1a1b26", - "black": "#15161e", + "background": "#0f0908", + "black": "#0c0706", "blue": "#d47d49", "brightBlack": "#392D2B", "brightBlue": "#d47d49", @@ -19,7 +19,7 @@ "name": "FarOut", "purple": "#8a4b53", "red": "#bf472c", - "selectionBackground": "#714f41", + "selectionBackground": "#6b442f", "white": "#F2A766", "yellow": "#f2a766" } diff --git a/extras/xfceterm/faroutday.theme b/extras/xfceterm/faroutday.theme index 4d09bbb..80f1927 100644 --- a/extras/xfceterm/faroutday.theme +++ b/extras/xfceterm/faroutday.theme @@ -1,9 +1,9 @@ [Scheme] Name=FarOut Colors -ColorBackground=#e1e2e7 +ColorBackground=#f9f6f6 ColorForeground=#6c6252 -ColorSelectionBackground=#c48c75 +ColorSelectionBackground=#dd9169 ColorSelection=#6c6252 -ColorPalette=#e9e9ed;#db5234;#715e4b;#9b6635;#c77544;#c37f87;#91654c;#9b6635;#d1c4c2;#db5234;#715e4b;#9b6635;#c77544;#c37f87;#91654c;#6c6252 +ColorPalette=#faf8f8;#db5234;#715e4b;#9b6635;#c77544;#c37f87;#91654c;#9b6635;#d1c4c2;#db5234;#715e4b;#9b6635;#c77544;#c37f87;#91654c;#6c6252 diff --git a/extras/xfceterm/faroutnight.theme b/extras/xfceterm/faroutnight.theme index efcaeba..038d878 100644 --- a/extras/xfceterm/faroutnight.theme +++ b/extras/xfceterm/faroutnight.theme @@ -1,9 +1,9 @@ [Scheme] Name=FarOut Colors -ColorBackground=#1a1b26 +ColorBackground=#0f0908 ColorForeground=#E0CCAE -ColorSelectionBackground=#714f41 +ColorSelectionBackground=#6b442f ColorSelection=#E0CCAE -ColorPalette=#15161e;#bf472c;#a4896f;#f2a766;#d47d49;#8a4b53;#a67458;#F2A766;#392D2B;#bf472c;#a4896f;#f2a766;#d47d49;#8a4b53;#a67458;#E0CCAE +ColorPalette=#0c0706;#bf472c;#a4896f;#f2a766;#d47d49;#8a4b53;#a67458;#F2A766;#392D2B;#bf472c;#a4896f;#f2a766;#d47d49;#8a4b53;#a67458;#E0CCAE diff --git a/extras/xresources/faroutday.Xresources b/extras/xresources/faroutday.Xresources index 262a6f8..5a09ec1 100644 --- a/extras/xresources/faroutday.Xresources +++ b/extras/xresources/faroutday.Xresources @@ -1,9 +1,9 @@ ! FarOut colors for Xresources -*background: #e1e2e7 +*background: #f9f6f6 *foreground: #6c6252 -*color0: #e9e9ed +*color0: #faf8f8 *color1: #db5234 *color2: #715e4b *color3: #9b6635 diff --git a/extras/xresources/faroutnight.Xresources b/extras/xresources/faroutnight.Xresources index cb8077c..9ffd1db 100644 --- a/extras/xresources/faroutnight.Xresources +++ b/extras/xresources/faroutnight.Xresources @@ -1,9 +1,9 @@ ! FarOut colors for Xresources -*background: #1a1b26 +*background: #0f0908 *foreground: #E0CCAE -*color0: #15161e +*color0: #0c0706 *color1: #bf472c *color2: #a4896f *color3: #f2a766 diff --git a/extras/zathura/faroutday.zathurarc b/extras/zathura/faroutday.zathurarc index eac2a3b..557147d 100644 --- a/extras/zathura/faroutday.zathurarc +++ b/extras/zathura/faroutday.zathurarc @@ -7,32 +7,32 @@ set notification-error-bg "#db5234" set notification-error-fg "#6c6252" set notification-warning-bg "#9b6635" set notification-warning-fg "#d1c4c2" -set notification-bg "#e1e2e7" +set notification-bg "#f9f6f6" set notification-fg "#6c6252" -set completion-bg "#e1e2e7" +set completion-bg "#f9f6f6" set completion-fg "#9b6635" -set completion-group-bg "#e1e2e7" +set completion-group-bg "#f9f6f6" set completion-group-fg "#9b6635" set completion-highlight-bg "#d1c4c2" set completion-highlight-fg "#6c6252" -set index-bg "#e1e2e7" +set index-bg "#f9f6f6" set index-fg "#6c6252" set index-active-bg "#d1c4c2" set index-active-fg "#6c6252" -set inputbar-bg "#e1e2e7" +set inputbar-bg "#f9f6f6" set inputbar-fg "#6c6252" -set statusbar-bg "#e1e2e7" +set statusbar-bg "#f9f6f6" set statusbar-fg "#6c6252" set highlight-color "#9b6635" set highlight-active-color "#715e4b" -set default-bg "#e1e2e7" +set default-bg "#f9f6f6" set default-fg "#6c6252" set render-loading true -set render-loading-fg "#e1e2e7" +set render-loading-fg "#f9f6f6" set render-loading-bg "#6c6252" # # Recolor mode settings # to switch modes # -set recolor-lightcolor "#e1e2e7" +set recolor-lightcolor "#f9f6f6" set recolor-darkcolor "#6c6252" diff --git a/extras/zathura/faroutnight.zathurarc b/extras/zathura/faroutnight.zathurarc index e93d19f..fb59228 100644 --- a/extras/zathura/faroutnight.zathurarc +++ b/extras/zathura/faroutnight.zathurarc @@ -7,32 +7,32 @@ set notification-error-bg "#bf472c" set notification-error-fg "#E0CCAE" set notification-warning-bg "#f2a766" set notification-warning-fg "#392D2B" -set notification-bg "#1a1b26" +set notification-bg "#0f0908" set notification-fg "#E0CCAE" -set completion-bg "#1a1b26" +set completion-bg "#0f0908" set completion-fg "#F2A766" -set completion-group-bg "#1a1b26" +set completion-group-bg "#0f0908" set completion-group-fg "#F2A766" set completion-highlight-bg "#392D2B" set completion-highlight-fg "#E0CCAE" -set index-bg "#1a1b26" +set index-bg "#0f0908" set index-fg "#E0CCAE" set index-active-bg "#392D2B" set index-active-fg "#E0CCAE" -set inputbar-bg "#1a1b26" +set inputbar-bg "#0f0908" set inputbar-fg "#E0CCAE" -set statusbar-bg "#1a1b26" +set statusbar-bg "#0f0908" set statusbar-fg "#E0CCAE" set highlight-color "#f2a766" set highlight-active-color "#a4896f" -set default-bg "#1a1b26" +set default-bg "#0f0908" set default-fg "#E0CCAE" set render-loading true -set render-loading-fg "#1a1b26" +set render-loading-fg "#0f0908" set render-loading-bg "#E0CCAE" # # Recolor mode settings # to switch modes # -set recolor-lightcolor "#1a1b26" +set recolor-lightcolor "#0f0908" set recolor-darkcolor "#E0CCAE" diff --git a/lua/farout/colors.lua b/lua/farout/colors.lua index d33dece..7c18738 100644 --- a/lua/farout/colors.lua +++ b/lua/farout/colors.lua @@ -43,10 +43,7 @@ M.default = { }, } -M.night = { - bg = "#1a1b26", - bg_dark = "#16161e", -} +M.night = {} M.day = M.night M.moon = function() diff --git a/lua/farout/theme.lua b/lua/farout/theme.lua index 4b457af..33747ea 100644 --- a/lua/farout/theme.lua +++ b/lua/farout/theme.lua @@ -72,7 +72,7 @@ function M.setup() PmenuThumb = { bg = c.fg_gutter }, -- Popup menu: Thumb of the scrollbar. Question = { fg = c.blue }, -- |hit-enter| prompt and yes/no questions QuickFixLine = { bg = c.bg_visual, bold = true }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there. - Search = { bg = c.bg_search, fg = c.fg }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out. + Search = { bg = c.bg_search, fg = c.bg_highlight }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out. IncSearch = { bg = c.orange, fg = c.black }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c" CurSearch = { link = "IncSearch" }, SpecialKey = { fg = c.dark3 }, -- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|