diff --git a/doom/config.el b/doom/config.el index fd80f90..754dec6 100644 --- a/doom/config.el +++ b/doom/config.el @@ -40,8 +40,8 @@ ;; (add-to-list 'default-frame-alist '(height . 70)) ;; Transparency -(set-frame-parameter (selected-frame) 'alpha '(97 96)) -(add-to-list 'default-frame-alist '(alpha 97 96)) +(set-frame-parameter (selected-frame) 'alpha '(99 98)) +(add-to-list 'default-frame-alist '(alpha 99 98)) ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads! diff --git a/kitty/current-theme.conf b/kitty/current-theme.conf index 2cdbb2f..5057b8a 100644 --- a/kitty/current-theme.conf +++ b/kitty/current-theme.conf @@ -1,32 +1,59 @@ -# One Dark by Giuseppe Cesarano, https://github.com/GiuseppeCesarano -# This work is licensed under the terms of the GPL-2.0 license. -# For a copy, see https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html. +# vim:ft=kitty -# Colors +## name: Doom Vibrant +## author: Henrik Lissner +## license: MIT +## blurb: A version of Doom One Emacs theme that uses more vibrant colors. -foreground #979eab -background #282c34 +# The basic colors +foreground #bbc2cf +background #242730 +selection_foreground #bbc2cf +selection_background #6A8FBF -color0 #282c34 -color1 #e06c75 -color2 #98c379 -color3 #e5c07b -color4 #61afef -color5 #be5046 -color6 #56b6c2 -color7 #979eab -color8 #393e48 -color9 #d19a66 -color10 #56b6c2 -color11 #e5c07b -color12 #61afef -color13 #be5046 -color14 #56b6c2 -color15 #abb2bf +# Cursor colors +cursor #bbc2cf +cursor_text_color #242730 -# Tab Bar +# kitty window border colors +active_border_color #46D9FF +inactive_border_color #484854 -active_tab_foreground #282c34 -active_tab_background #979eab -inactive_tab_foreground #abb2bf -inactive_tab_background #282c34 +# Tab bar colors +active_tab_foreground #242730 +active_tab_background #DFDFDF +inactive_tab_foreground #484854 +inactive_tab_background #5D656B + +# The basic 16 colors +# black +color0 #2a2e38 +color8 #484854 + +# red +color1 #ff665c +color9 #ff665c + +# green +color2 #7bc275 +color10 #99bb66 + +# yellow +color3 #fcce7b +color11 #ecbe7b + +# blue +color4 #51afef +color12 #51afef + +# magenta +color5 #C57BDB +color13 #c678dd + +# cyan +color6 #5cEfFF +color14 #46D9FF + +# white +color7 #DFDFDF +color15 #bbc2cf diff --git a/kitty/kitty.conf b/kitty/kitty.conf index f09406a..8f31bdc 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -23,7 +23,7 @@ font_family Fira Code Regular Nerd Font Complete Mono #: italic_font Operator Mono Book Italic #: bold_italic_font Operator Mono Medium Italic -font_size 12.0 +font_size 14.0 #: Font size (in pts) @@ -640,7 +640,7 @@ enabled_layouts vertical, tall, grid #: The foreground and background colors -background_opacity 0.97 +background_opacity 1.0 #: The opacity of the background. A number between 0 and 1, where 1 is #: opaque and 0 is fully transparent. This will only work if @@ -1350,6 +1350,6 @@ mouse_map ctrl+shift+left click ungrabbed mouse_click # BEGIN_KITTY_THEME -# One Dark +# Doom Vibrant include current-theme.conf # END_KITTY_THEME diff --git a/xonsh/prompt.xsh b/xonsh/prompt.xsh index e8ab966..2f2365c 100644 --- a/xonsh/prompt.xsh +++ b/xonsh/prompt.xsh @@ -6,10 +6,11 @@ if $TERM == "dumb": $BOTTOM_TOOLBAR = None else: $PROMPT = \ - "{bg#2E3440}{RED}{localtime} " \ - "{#5E6470}\ue0b1 {YELLOW}{user}{DEFAULT}@{GREEN}{hostname} " \ - "{#5E6470}\ue0b1 {BLUE}{short_cwd} {DEFAULT}{env_name}{RESET}{#2E3440}\ue0b0\n" \ + "{bg#2E3440}{BOLD_GREEN}{localtime} " \ + "{#5E6470}\ue0b1 {BOLD_YELLOW}{user}{DEFAULT}@{INTENSE_RED}{hostname} " \ + "{#5E6470}\ue0b1 {CYAN}{short_cwd} {DEFAULT}{env_name}{RESET}{#2E3440}\ue0b0\n" \ "{RESET}{INTENSE_GREEN}{prompt_end}{RESET} " + # $PROMPT = '{env_name}{BOLD_GREEN}{user}{RESET}@{hostname}:{BOLD_GREEN}{cwd}{RESET}|{gitstatus}\n{BOLD_INTENSE_RED}➤{RESET} ' # # Color style to fix unreadable greys # from xonsh.tools import register_custom_style @@ -21,5 +22,5 @@ else: # # and # # https://github.com/pygments/pygments/blob/master/pygments/styles/native.py # } -# register_custom_style("ttm-style", ttm_style, base="native") -# $XONSH_COLOR_STYLE = "ttm-style" +# register_custom_style("ttm-style", ttm_style) +$XONSH_COLOR_STYLE = "stata-dark"