From 55ccf81a25c085b1cdaa8a770ffc839c6002748a Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 26 May 2023 18:40:11 +0100 Subject: Add modus themes to dotfiles --- kitty/.config/kitty/modus_operandi.conf | 60 +++++++++++++++++++++++++++++++++ kitty/.config/kitty/modus_vivendi.conf | 60 +++++++++++++++++++++++++++++++++ 2 files changed, 120 insertions(+) create mode 100644 kitty/.config/kitty/modus_operandi.conf create mode 100644 kitty/.config/kitty/modus_vivendi.conf diff --git a/kitty/.config/kitty/modus_operandi.conf b/kitty/.config/kitty/modus_operandi.conf new file mode 100644 index 0000000..46b2cbc --- /dev/null +++ b/kitty/.config/kitty/modus_operandi.conf @@ -0,0 +1,60 @@ +# 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 new file mode 100644 index 0000000..eaa3e06 --- /dev/null +++ b/kitty/.config/kitty/modus_vivendi.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 -- cgit