From 23a35dd04d11f638e66639b6a0756a8a73ddaf9b Mon Sep 17 00:00:00 2001 From: jc <46619361+juancwu@users.noreply.github.com> Date: Sun, 2 Jun 2024 16:25:18 -0400 Subject: [PATCH] use rose-pine colorscheme --- kitty/current-theme.conf | 85 ++++++++++++++++++++++------------------ nvim/init.lua | 4 +- 2 files changed, 48 insertions(+), 41 deletions(-) diff --git a/kitty/current-theme.conf b/kitty/current-theme.conf index 5ff2646..fca9531 100644 --- a/kitty/current-theme.conf +++ b/kitty/current-theme.conf @@ -1,44 +1,53 @@ -# vim:ft=kitty - -## name: Tokyo Night Storm +## name: Rosé Pine +## author: mvllow ## license: MIT -## author: Folke Lemaitre -## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty_tokyonight_storm.conf +## upstream: https://github.com/rose-pine/kitty/blob/main/dist/rose-pine.conf +## blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist -background #24283b -foreground #c0caf5 -selection_background #364A82 -selection_foreground #c0caf5 -url_color #73daca -cursor #c0caf5 +foreground #e0def4 +background #191724 +selection_foreground #e0def4 +selection_background #403d52 -# Tabs -active_tab_background #7aa2f7 -active_tab_foreground #1f2335 -inactive_tab_background #292e42 -inactive_tab_foreground #545c7e -#tab_bar_background #1D202F +cursor #524f67 +cursor_text_color #e0def4 -# normal -color0 #1D202F -color1 #f7768e -color2 #9ece6a -color3 #e0af68 -color4 #7aa2f7 -color5 #bb9af7 -color6 #7dcfff -color7 #a9b1d6 +url_color #c4a7e7 -# bright -color8 #414868 -color9 #f7768e -color10 #9ece6a -color11 #e0af68 -color12 #7aa2f7 -color13 #bb9af7 -color14 #7dcfff -color15 #c0caf5 +active_tab_foreground #e0def4 +active_tab_background #26233a +inactive_tab_foreground #6e6a86 +inactive_tab_background #191724 + +# black +color0 #26233a +color8 #6e6a86 + +# red +color1 #eb6f92 +color9 #eb6f92 + +# green +color2 #31748f +color10 #31748f + +# yellow +color3 #f6c177 +color11 #f6c177 + +# blue +color4 #9ccfd8 +color12 #9ccfd8 + +# magenta +color5 #c4a7e7 +color13 #c4a7e7 + +# cyan +color6 #ebbcba +color14 #ebbcba + +# white +color7 #e0def4 +color15 #e0def4 -# extended colors -color16 #ff9e64 -color17 #db4b4b diff --git a/nvim/init.lua b/nvim/init.lua index e568265..5aa51e9 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -12,7 +12,5 @@ end vim.opt.rtp:prepend(lazypath) require("juancwu.config").setup({ - colorscheme = function() - require("tokyonight").load() - end, + colorscheme = "rose-pine" })