diff options
author | awy <awy@awy.one> | 2025-08-07 18:03:17 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-08-07 18:03:17 +0300 |
commit | 0dab53fe978c67888957256a9ee0bf34b75b29ac (patch) | |
tree | 3011f6f4cfc438dd38bd6fb82e8e3dd04d7f8ec4 /.config | |
parent | 82307a7d73dc2683062e1029b98bf976fb50ee26 (diff) | |
download | hyprdots-0dab53fe978c67888957256a9ee0bf34b75b29ac.tar.gz |
everforest
Diffstat (limited to '.config')
-rw-r--r-- | .config/kitty/kitty.conf | 113 | ||||
-rw-r--r-- | .config/nvim/lua/plugins/everforest.lua | 10 | ||||
-rw-r--r-- | .config/nvim/lua/plugins/gruvbox.lua | 9 |
3 files changed, 74 insertions, 58 deletions
diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index 3f67c81..61ca426 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -21,59 +21,74 @@ map alt+0 change_font_size all 0 map alt+l open_url_with_hints -# THEME -# Based on https://github.com/morhetz/gruvbox by morhetz <morhetz@gmail.com> -# Adapted to kitty by wdomitrz <witekdomitrz@gmail.com> - -cursor #928374 -cursor_text_color background - -url_color #83a598 - -visual_bell_color #8ec07c -bell_border_color #8ec07c - -active_border_color #d3869b -inactive_border_color #665c54 - -foreground #ebdbb2 -background #282828 -selection_foreground #928374 -selection_background #ebdbb2 - -active_tab_foreground #fbf1c7 -active_tab_background #665c54 -inactive_tab_foreground #a89984 -inactive_tab_background #3c3836 - -# black (bg3/bg4) -color0 #665c54 -color8 #7c6f64 - -# red -color1 #cc241d -color9 #fb4934 +# vim:ft=kitty + +## name: Everforest Dark Hard +## author: Emil Löfquist (https://github.com/ewal) +## license: MIT +## upstream: https://github.com/ewal/kitty-everforest/blob/master/themes/everforest_dark_hard.conf +## blurb: Dark (hard) theme based on https://github.com/sainnhe/everforest for Vim. + +foreground #d3c6aa +background #2b3339 +selection_foreground #9da9a0 +selection_background #503946 + +cursor #d3c6aa +cursor_text_color #323c41 + +url_color #7fbbb3 + +active_border_color #a7c080 +inactive_border_color #53605c +bell_border_color #e69875 +visual_bell_color none + +wayland_titlebar_color system +macos_titlebar_color system + +active_tab_background #2b3339 +active_tab_foreground #d3c6aa +inactive_tab_background #3a454a +inactive_tab_foreground #9da9a0 +tab_bar_background #323c41 +tab_bar_margin_color none + +mark1_foreground #2b3339 +mark1_background #7fbbb3 +mark2_foreground #2b3339 +mark2_background #d3c6aa +mark3_foreground #2b3339 +mark3_background #d699b6 + +#: black +color0 #374247 +color8 #404c51 + +#: red +color1 #e67e80 +color9 #e67e80 #: green -color2 #98971a -color10 #b8bb26 +color2 #a7c080 +color10 #a7c080 -# yellow -color3 #d79921 -color11 #fabd2f +#: yellow +color3 #dbbc7f +color11 #dbbc7f -# blue -color4 #458588 -color12 #83a598 +#: blue +color4 #7fbbb3 +color12 #7fbbb3 -# purple -color5 #b16286 -color13 #d3869b +#: magenta +color5 #d699b6 +color13 #d699b6 -# aqua -color6 #689d6a -color14 #8ec07c +#: cyan +color6 #83c092 +color14 #83c092 -# white (fg4/fg3) -color7 #a89984 -color15 #bdae93 +#: white +color7 #859289 +color15 #9da9a0 diff --git a/.config/nvim/lua/plugins/everforest.lua b/.config/nvim/lua/plugins/everforest.lua new file mode 100644 index 0000000..d652977 --- /dev/null +++ b/.config/nvim/lua/plugins/everforest.lua @@ -0,0 +1,10 @@ +return { + 'sainnhe/everforest', + lazy = false, + priority = 1000, + config = function() + vim.g.everforest_enable_italic = true + vim.g.everforest_transparent_background = true + vim.cmd.colorscheme('everforest') + end +} diff --git a/.config/nvim/lua/plugins/gruvbox.lua b/.config/nvim/lua/plugins/gruvbox.lua deleted file mode 100644 index ecd9b49..0000000 --- a/.config/nvim/lua/plugins/gruvbox.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - "ellisonleao/gruvbox.nvim", - config = function() - require("gruvbox").setup({ - transparent_mode = true, - }) - vim.cmd.colorscheme "gruvbox" - end, -} |