Initial commit
This commit is contained in:
80
dot_config/kitty/current-theme.conf
Normal file
80
dot_config/kitty/current-theme.conf
Normal file
@ -0,0 +1,80 @@
|
||||
# vim:ft=kitty
|
||||
|
||||
## name: Catppuccin-Mocha
|
||||
## author: Pocco81 (https://github.com/Pocco81)
|
||||
## license: MIT
|
||||
## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf
|
||||
## blurb: Soothing pastel theme for the high-spirited!
|
||||
|
||||
|
||||
|
||||
# The basic colors
|
||||
foreground #DADAFF
|
||||
background #0E1219
|
||||
selection_foreground #0E1219
|
||||
selection_background #BD93F9
|
||||
|
||||
# Cursor colors
|
||||
cursor #F5E0DC
|
||||
cursor_text_color #1E1E2E
|
||||
|
||||
# URL underline color when hovering with mouse
|
||||
url_color #F5E0DC
|
||||
|
||||
# Kitty window border colors
|
||||
active_border_color #B4BEFE
|
||||
inactive_border_color #6C7086
|
||||
bell_border_color #F9E2AF
|
||||
|
||||
# OS Window titlebar colors
|
||||
wayland_titlebar_color system
|
||||
macos_titlebar_color system
|
||||
|
||||
# Tab bar colors
|
||||
active_tab_foreground #11111B
|
||||
active_tab_background #CBA6F7
|
||||
inactive_tab_foreground #CDD6F4
|
||||
inactive_tab_background #181825
|
||||
tab_bar_background #11111B
|
||||
|
||||
# Colors for marks (marked text in the terminal)
|
||||
mark1_foreground #1E1E2E
|
||||
mark1_background #B4BEFE
|
||||
mark2_foreground #1E1E2E
|
||||
mark2_background #CBA6F7
|
||||
mark3_foreground #1E1E2E
|
||||
mark3_background #74C7EC
|
||||
|
||||
# The 16 terminal colors
|
||||
|
||||
# black
|
||||
color0 #45475A
|
||||
color8 #585B70
|
||||
|
||||
# red
|
||||
color1 #F38BA8
|
||||
color9 #F38BA8
|
||||
|
||||
# green
|
||||
color2 #A6E3A1
|
||||
color10 #A6E3A1
|
||||
|
||||
# yellow
|
||||
color3 #F9E2AF
|
||||
color11 #F9E2AF
|
||||
|
||||
# blue
|
||||
color4 #89B4FA
|
||||
color12 #89B4FA
|
||||
|
||||
# magenta
|
||||
color5 #F5C2E7
|
||||
color13 #F5C2E7
|
||||
|
||||
# cyan
|
||||
color6 #94E2D5
|
||||
color14 #94E2D5
|
||||
|
||||
# white
|
||||
color7 #BAC2DE
|
||||
color15 #A6ADC8
|
||||
96
dot_config/kitty/kitty.conf
Normal file
96
dot_config/kitty/kitty.conf
Normal file
@ -0,0 +1,96 @@
|
||||
linux_display_server wayland
|
||||
# wayland_titlebar_color background
|
||||
|
||||
font_family JetBrainsMono Nerd Font
|
||||
bold_font auto
|
||||
italic_font auto
|
||||
bold_italic_font auto
|
||||
|
||||
font_size 14
|
||||
background_opacity 0.4
|
||||
|
||||
# window settings
|
||||
initial_window_width 95c
|
||||
initial_window_height 35c
|
||||
window_padding_width 20
|
||||
confirm_os_window_close 0
|
||||
|
||||
# Upstream colors {{{
|
||||
|
||||
# Special
|
||||
# background #14151e
|
||||
# foreground #98b0d3
|
||||
|
||||
# Black
|
||||
# color0 #151720
|
||||
# color8 #4f5572
|
||||
|
||||
# Red
|
||||
# color1 #dd6777
|
||||
# color9 #e26c7c
|
||||
|
||||
# Green
|
||||
# color2 #90ceaa
|
||||
# color10 #95d3af
|
||||
|
||||
# Yellow
|
||||
# color3 #ecd3a0
|
||||
# color11 #f1d8a5
|
||||
|
||||
# Blue
|
||||
# color4 #86aaec
|
||||
# color12 #8baff1
|
||||
|
||||
# Magenta
|
||||
# color5 #c296eb
|
||||
# color13 #c79bf0
|
||||
|
||||
# Cyan
|
||||
# color6 #93cee9
|
||||
# color14 #98d3ee
|
||||
|
||||
# White
|
||||
# color7 #cbced3
|
||||
# color15 #d0d3d8
|
||||
|
||||
# Cursor
|
||||
# cursor #cbced3
|
||||
# cursor_text_color #a5b6cf
|
||||
|
||||
# Selection highlight
|
||||
# selection_foreground #a5b6cf
|
||||
# selection_background #1c1e27
|
||||
|
||||
|
||||
# The color for highlighting URLs on mouse-over
|
||||
# url_color #9ece6a
|
||||
url color #5de4c7
|
||||
|
||||
# Window borders
|
||||
# active_border_color #3d59a1
|
||||
# inactive_border_color #101014
|
||||
# bell_border_color #fffac2
|
||||
|
||||
# Tab bar
|
||||
tab_bar_style fade
|
||||
tab_fade 1
|
||||
# active_tab_foreground #3d59a1
|
||||
# active_tab_background #16161e
|
||||
active_tab_font_style bold
|
||||
# inactive_tab_foreground #787c99
|
||||
# inactive_tab_background #16161e
|
||||
inactive_tab_font_style bold
|
||||
# tab_bar_background #101014
|
||||
|
||||
# Title bar
|
||||
# macos_titlebar_color #16161e
|
||||
|
||||
# {{{ Keybindings
|
||||
map kitty_mod+t new_tab_with_cwd
|
||||
# map ctrl+shift+z paste [\x1bctrlback]
|
||||
# }}
|
||||
|
||||
# BEGIN_KITTY_THEME
|
||||
# Catppuccin-Mocha
|
||||
include current-theme.conf
|
||||
# END_KITTY_THEME
|
||||
Reference in New Issue
Block a user