From 600858cc3f149b39e6b5c7db6338feaa17e528b5 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 2 Jun 2023 13:11:59 +0100 Subject: Add current theme instead of custom pipeline --- kitty/.config/kitty/current-theme.conf | 60 +++++++++++++++++++++++++++++++++ kitty/.config/kitty/kitty.conf | 5 ++- kitty/.config/kitty/modus_operandi.conf | 60 --------------------------------- kitty/.config/kitty/modus_vivendi.conf | 60 --------------------------------- kitty/.config/kitty/theme.conf | 1 - kitty/.config/kitty/zenbones_dark.conf | 49 --------------------------- kitty/.config/kitty/zenbones_light.conf | 49 --------------------------- 7 files changed, 64 insertions(+), 220 deletions(-) create mode 100644 kitty/.config/kitty/current-theme.conf delete mode 100644 kitty/.config/kitty/modus_operandi.conf delete mode 100644 kitty/.config/kitty/modus_vivendi.conf delete mode 120000 kitty/.config/kitty/theme.conf delete mode 100644 kitty/.config/kitty/zenbones_dark.conf delete mode 100644 kitty/.config/kitty/zenbones_light.conf diff --git a/kitty/.config/kitty/current-theme.conf b/kitty/.config/kitty/current-theme.conf new file mode 100644 index 0000000..eaa3e06 --- /dev/null +++ b/kitty/.config/kitty/current-theme.conf @@ -0,0 +1,60 @@ +# vim:ft=kitty + +## name: Modus Vivendi Tinted +## author: Protesilaos Stavrou +## license: GNU GPLv3 +## blurb: Highly accessible themes made for GNU Emacs, conforming with the highest +## standard for colour contrast between background and foreground values (WCAG AAA) + +# The basic colors +foreground #ffffff +background #0d0e1c +selection_foreground #ffffff +selection_background #5c5c5c + +# Cursor colors +cursor #ffffff +cursor_text_color #0d0e1c + +# kitty window border colors +active_border_color #c6daff +inactive_border_color #595959 + +# Tab bar colors +active_tab_foreground #ffffff +active_tab_background #4a4f6a +inactive_tab_foreground #969696 +inactive_tab_background #2b3046 + +# The basic 16 colors +# black +color0 #0d0e1c +color8 #595959 + +# red +color1 #ff5f59 +color9 #ff7f9f + +# green +color2 #44bc44 +color10 #70b900 + +# yellow +color3 #d0bc00 +color11 #fec43f + +# blue +color4 #2fafff +color12 #79a8ff + +# magenta +color5 #feacd0 +color13 #b6a0ff + +# cyan +color6 #00d3d0 +color14 #6ae4b9 + +# white +color7 #989898 +color15 #ffffff diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index 08869c0..cc72d50 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -2288,4 +2288,7 @@ shell_integration no-cursor #: }}} -include ./theme.conf +# BEGIN_KITTY_THEME +# Modus Vivendi Tinted +include current-theme.conf +# END_KITTY_THEME \ No newline at end of file diff --git a/kitty/.config/kitty/modus_operandi.conf b/kitty/.config/kitty/modus_operandi.conf deleted file mode 100644 index 46b2cbc..0000000 --- a/kitty/.config/kitty/modus_operandi.conf +++ /dev/null @@ -1,60 +0,0 @@ -# vim:ft=kitty - -## name: Modus Operandi Tinted -## author: Protesilaos Stavrou -## license: GNU GPLv3 -## blurb: Highly accessible themes made for GNU Emacs, conforming with the highest -## standard for colour contrast between background and foreground values (WCAG AAA) - -# The basic colors -foreground #000000 -background #fbf7f0 -selection_foreground #000000 -selection_background #bcbcbc - -# Cursor colors -cursor #000000 -cursor_text_color #fbf7f0 - -# kitty window border colors -active_border_color #193668 -inactive_border_color #9f9f9f - -# Tab bar colors -active_tab_foreground #000000 -active_tab_background #c9b8b1 -inactive_tab_foreground #585858 -inactive_tab_background #dfd6cd - -# The basic 16 colors -# black -color0 #000000 -color8 #585858 - -# red -color1 #a60000 -color9 #972500 - -# green -color2 #006800 -color10 #316500 - -# yellow -color3 #6f5500 -color11 #884900 - -# blue -color4 #0031a9 -color12 #354fcf - -# magenta -color5 #721045 -color13 #531ab6 - -# cyan -color6 #00538b -color14 #005a5f - -# white -color7 #dfd6cd -color15 #fbf7f0 diff --git a/kitty/.config/kitty/modus_vivendi.conf b/kitty/.config/kitty/modus_vivendi.conf deleted file mode 100644 index eaa3e06..0000000 --- a/kitty/.config/kitty/modus_vivendi.conf +++ /dev/null @@ -1,60 +0,0 @@ -# vim:ft=kitty - -## name: Modus Vivendi Tinted -## author: Protesilaos Stavrou -## license: GNU GPLv3 -## blurb: Highly accessible themes made for GNU Emacs, conforming with the highest -## standard for colour contrast between background and foreground values (WCAG AAA) - -# The basic colors -foreground #ffffff -background #0d0e1c -selection_foreground #ffffff -selection_background #5c5c5c - -# Cursor colors -cursor #ffffff -cursor_text_color #0d0e1c - -# kitty window border colors -active_border_color #c6daff -inactive_border_color #595959 - -# Tab bar colors -active_tab_foreground #ffffff -active_tab_background #4a4f6a -inactive_tab_foreground #969696 -inactive_tab_background #2b3046 - -# The basic 16 colors -# black -color0 #0d0e1c -color8 #595959 - -# red -color1 #ff5f59 -color9 #ff7f9f - -# green -color2 #44bc44 -color10 #70b900 - -# yellow -color3 #d0bc00 -color11 #fec43f - -# blue -color4 #2fafff -color12 #79a8ff - -# magenta -color5 #feacd0 -color13 #b6a0ff - -# cyan -color6 #00d3d0 -color14 #6ae4b9 - -# white -color7 #989898 -color15 #ffffff diff --git a/kitty/.config/kitty/theme.conf b/kitty/.config/kitty/theme.conf deleted file mode 120000 index 06a1a2a..0000000 --- a/kitty/.config/kitty/theme.conf +++ /dev/null @@ -1 +0,0 @@ -zenbones_light.conf \ No newline at end of file diff --git a/kitty/.config/kitty/zenbones_dark.conf b/kitty/.config/kitty/zenbones_dark.conf deleted file mode 100644 index 98c4649..0000000 --- a/kitty/.config/kitty/zenbones_dark.conf +++ /dev/null @@ -1,49 +0,0 @@ -# This file is auto-generated by shipwright.nvim -# vim:ft=kitty -## name: zenbones_dark -## author: Michael Chris Lopez -## license: MIT -## upstream: https://github.com/mcchrish/zenbones.nvim/raw/main/extras/kitty/zenbones_dark.conf -## blurb: A contrast-based colorscheme. -foreground #B4BDC3 -background #1C1917 -selection_foreground #B4BDC3 -selection_background #3D4042 -# Cursor colors -cursor #C4CACF -cursor_text_color #1C1917 -# URL underline color when hovering with mouse -# kitty window border colors -# OS Window titlebar colors -# Tab bar colors -active_tab_foreground #B4BDC3 -active_tab_background #65435E -inactive_tab_foreground #B4BDC3 -inactive_tab_background #352F2D -# Colors for marks (marked text in the terminal) -# The basic 16 colors -# black -color0 #1C1917 -color8 #403833 -# red -color1 #DE6E7C -color9 #E8838F -# green -color2 #819B69 -color10 #8BAE68 -# yellow -color3 #B77E64 -color11 #D68C67 -# blue -color4 #6099C0 -color12 #61ABDA -# magenta -color5 #B279A7 -color13 #CF86C1 -# cyan -color6 #66A5AD -color14 #65B8C1 -# white -color7 #B4BDC3 -color15 #888F94 -# You can set the remaining 240 colors as color16 to color255. diff --git a/kitty/.config/kitty/zenbones_light.conf b/kitty/.config/kitty/zenbones_light.conf deleted file mode 100644 index 7fd88c2..0000000 --- a/kitty/.config/kitty/zenbones_light.conf +++ /dev/null @@ -1,49 +0,0 @@ -# This file is auto-generated by shipwright.nvim -# vim:ft=kitty -## name: zenbones_light -## author: Michael Chris Lopez -## license: MIT -## upstream: https://github.com/mcchrish/zenbones.nvim/raw/main/extras/kitty/zenbones_light.conf -## blurb: A contrast-based colorscheme. -foreground #2C363C -background #F0EDEC -selection_foreground #2C363C -selection_background #CBD9E3 -# Cursor colors -cursor #2C363C -cursor_text_color #F0EDEC -# URL underline color when hovering with mouse -# kitty window border colors -# OS Window titlebar colors -# Tab bar colors -active_tab_foreground #2C363C -active_tab_background #DEB9D6 -inactive_tab_foreground #2C363C -inactive_tab_background #D6CDC9 -# Colors for marks (marked text in the terminal) -# The basic 16 colors -# black -color0 #F0EDEC -color8 #CFC1BA -# red -color1 #A8334C -color9 #94253E -# green -color2 #4F6C31 -color10 #3F5A22 -# yellow -color3 #944927 -color11 #803D1C -# blue -color4 #286486 -color12 #1D5573 -# magenta -color5 #88507D -color13 #7B3B70 -# cyan -color6 #3B8992 -color14 #2B747C -# white -color7 #2C363C -color15 #4F5E68 -# You can set the remaining 240 colors as color16 to color255. -- cgit