Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gruvfox #427

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions autoload/lightline/colorscheme/gruvfox.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
if has('nvim')
let s:p = v:lua.require('nightfox.util.lightline').generate('gruvfox')
else
lua nightfox_vim = require('nightfox.util.lightline').dump('gruvfox')
let s:palette_str = luaeval('nightfox_vim')
let s:p = eval(s:palette_str)
endif
let g:lightline#colorscheme#duskfox#palette = lightline#colorscheme#fill(s:p)
9 changes: 9 additions & 0 deletions colors/gruvfox.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
lua << EOF
-- Useful when debugging
if vim.g.nightfox_debug then
require("nightfox.util.reload")()
end

require("nightfox.config").set_fox("gruvfox")
require("nightfox").load()
EOF
79 changes: 79 additions & 0 deletions extra/gruvfox/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Nightfox Alacritty Colors
## name: gruvfox
## upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/gruvfox/alacritty.toml

[colors.primary]
background = "#1d2021"
foreground = "#ebdbb2"
dim_foreground = "#d5c4a1"
bright_foreground = "#fbf1c7"

[colors.cursor]
text = "#ebdbb2"
cursor = "#d5c4a1"

[colors.vi_mode_cursor]
text = "#ebdbb2"
cursor = "#8ec07c"

[colors.search.matches]
foreground = "#ebdbb2"
background = "#665C54"

[colors.search.focused_match]
foreground = "#ebdbb2"
background = "#b8bb26"

[colors.footer_bar]
foreground = "#ebdbb2"
background = "#3c3836"

[colors.hints.start]
foreground = "#ebdbb2"
background = "#fe8019"

[colors.hints.end]
foreground = "#ebdbb2"
background = "#3c3836"

[colors.selection]
text = "#ebdbb2"
background = "#3c3836"

[colors.normal]
black = "#282828"
red = "#fb4934"
green = "#b8bb26"
yellow = "#fabd2f"
blue = "#83a598"
magenta = "#d3869b"
cyan = "#8ec07c"
white = "#ebdbb2"

[colors.bright]
black = "#928374"
red = "#cc241d"
green = "#98971a"
yellow = "#d79921"
blue = "#458588"
magenta = "#b16286"
cyan = "#689d6a"
white = "#a89984"

[colors.dim]
black = "#222222"
red = "#d53e2c"
green = "#9c9f20"
yellow = "#d4a128"
blue = "#6f8c81"
magenta = "#b37284"
cyan = "#79a369"
white = "#c8ba97"

[[colors.indexed_colors]]
index = 16
color = "#fe8019"

[[colors.indexed_colors]]
index = 17
color = "#ff79c6"
18 changes: 18 additions & 0 deletions extra/gruvfox/base16.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
scheme: "gruvfox"
author: "EdenEast"
base00: "1d2021"
base01: "282828"
base02: "3c3836"
base03: "928374"
base04: "bdae93"
base05: "ebdbb2"
base06: "d5c4a1"
base07: "a89984"
base08: "fb4934"
base09: "fe8019"
base0A: "fabd2f"
base0B: "b8bb26"
base0C: "8ec07c"
base0D: "83a598"
base0E: "d3869b"
base0F: "ff79c6"
21 changes: 21 additions & 0 deletions extra/gruvfox/gruvfox.Xresources
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
! Nightfox colors for Xresources
! Style: gruvfox
! Upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/gruvfox/gruvfox.Xresources
*background: #1d2021
*foreground: #ebdbb2
*color0: #282828
*color1: #fb4934
*color2: #b8bb26
*color3: #fabd2f
*color4: #83a598
*color5: #d3869b
*color6: #8ec07c
*color7: #ebdbb2
*color8: #928374
*color9: #cc241d
*color10: #98971a
*color11: #d79921
*color12: #458588
*color13: #b16286
*color14: #689d6a
*color15: #a89984
35 changes: 35 additions & 0 deletions extra/gruvfox/gruvfox.fish
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Nightfox Color Palette
# Style: gruvfox
# Upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/gruvfox/gruvfox.fish
set -l foreground ebdbb2
set -l selection 3c3836
set -l comment 928374
set -l red fb4934
set -l orange fe8019
set -l yellow fabd2f
set -l green b8bb26
set -l purple d3869b
set -l cyan 8ec07c
set -l pink ff79c6

# Syntax Highlighting Colors
set -g fish_color_normal $foreground
set -g fish_color_command $cyan
set -g fish_color_keyword $pink
set -g fish_color_quote $yellow
set -g fish_color_redirection $foreground
set -g fish_color_end $orange
set -g fish_color_error $red
set -g fish_color_param $purple
set -g fish_color_comment $comment
set -g fish_color_selection --background=$selection
set -g fish_color_search_match --background=$selection
set -g fish_color_operator $green
set -g fish_color_escape $pink
set -g fish_color_autosuggestion $comment

# Completion Pager Colors
set -g fish_pager_color_progress $comment
set -g fish_pager_color_prefix $cyan
set -g fish_pager_color_completion $foreground
set -g fish_pager_color_description $comment
32 changes: 32 additions & 0 deletions extra/gruvfox/gruvfox.ghostty
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Nightfox colors for Ghostty
## name: gruvfox
## upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/gruvfox/gruvfox.ghostty

background = #1d2021
foreground = #ebdbb2
selection-background = #3c3836
selection-foreground = #ebdbb2
cursor-color = #ebdbb2

# normal
palette = 0=#282828
palette = 1=#fb4934
palette = 2=#b8bb26
palette = 3=#fabd2f
palette = 4=#83a598
palette = 5=#d3869b
palette = 6=#8ec07c
palette = 7=#ebdbb2

# bright
palette = 8=#928374
palette = 9=#cc241d
palette = 10=#98971a
palette = 11=#d79921
palette = 12=#458588
palette = 13=#b16286
palette = 14=#689d6a
palette = 15=#a89984

# extended colors
palette = 16=#fe8019
Loading