Theme update

This commit is contained in:
2022-05-13 23:42:33 -07:00
parent 6d187190f9
commit 13c667b9f3
4 changed files with 65 additions and 37 deletions

View File

@@ -40,8 +40,8 @@
;; (add-to-list 'default-frame-alist '(height . 70)) ;; (add-to-list 'default-frame-alist '(height . 70))
;; Transparency ;; Transparency
(set-frame-parameter (selected-frame) 'alpha '(97 96)) (set-frame-parameter (selected-frame) 'alpha '(99 98))
(add-to-list 'default-frame-alist '(alpha 97 96)) (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, ;; 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! ;; change `org-directory'. It must be set before org loads!

View File

@@ -1,32 +1,59 @@
# One Dark by Giuseppe Cesarano, https://github.com/GiuseppeCesarano # vim:ft=kitty
# 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.
# Colors ## name: Doom Vibrant
## author: Henrik Lissner <https://github.com/hlissner>
## license: MIT
## blurb: A version of Doom One Emacs theme that uses more vibrant colors.
foreground #979eab # The basic colors
background #282c34 foreground #bbc2cf
background #242730
selection_foreground #bbc2cf
selection_background #6A8FBF
color0 #282c34 # Cursor colors
color1 #e06c75 cursor #bbc2cf
color2 #98c379 cursor_text_color #242730
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
# Tab Bar # kitty window border colors
active_border_color #46D9FF
inactive_border_color #484854
active_tab_foreground #282c34 # Tab bar colors
active_tab_background #979eab active_tab_foreground #242730
inactive_tab_foreground #abb2bf active_tab_background #DFDFDF
inactive_tab_background #282c34 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

View File

@@ -23,7 +23,7 @@ font_family Fira Code Regular Nerd Font Complete Mono
#: italic_font Operator Mono Book Italic #: italic_font Operator Mono Book Italic
#: bold_italic_font Operator Mono Medium Italic #: bold_italic_font Operator Mono Medium Italic
font_size 12.0 font_size 14.0
#: Font size (in pts) #: Font size (in pts)
@@ -640,7 +640,7 @@ enabled_layouts vertical, tall, grid
#: The foreground and background colors #: 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 #: 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 #: 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 # BEGIN_KITTY_THEME
# One Dark # Doom Vibrant
include current-theme.conf include current-theme.conf
# END_KITTY_THEME # END_KITTY_THEME

View File

@@ -6,10 +6,11 @@ if $TERM == "dumb":
$BOTTOM_TOOLBAR = None $BOTTOM_TOOLBAR = None
else: else:
$PROMPT = \ $PROMPT = \
"{bg#2E3440}{RED}{localtime} " \ "{bg#2E3440}{BOLD_GREEN}{localtime} " \
"{#5E6470}\ue0b1 {YELLOW}{user}{DEFAULT}@{GREEN}{hostname} " \ "{#5E6470}\ue0b1 {BOLD_YELLOW}{user}{DEFAULT}@{INTENSE_RED}{hostname} " \
"{#5E6470}\ue0b1 {BLUE}{short_cwd} {DEFAULT}{env_name}{RESET}{#2E3440}\ue0b0\n" \ "{#5E6470}\ue0b1 {CYAN}{short_cwd} {DEFAULT}{env_name}{RESET}{#2E3440}\ue0b0\n" \
"{RESET}{INTENSE_GREEN}{prompt_end}{RESET} " "{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 # # Color style to fix unreadable greys
# from xonsh.tools import register_custom_style # from xonsh.tools import register_custom_style
@@ -21,5 +22,5 @@ else:
# # and # # and
# # https://github.com/pygments/pygments/blob/master/pygments/styles/native.py # # https://github.com/pygments/pygments/blob/master/pygments/styles/native.py
# } # }
# register_custom_style("ttm-style", ttm_style, base="native") # register_custom_style("ttm-style", ttm_style)
# $XONSH_COLOR_STYLE = "ttm-style" $XONSH_COLOR_STYLE = "stata-dark"