feat(editorconfig): add an editorconfig
This commit is contained in:
parent
b9b0d018b8
commit
05bc137e03
6 changed files with 838 additions and 119 deletions
|
@ -108,7 +108,7 @@
|
|||
frame_width = 3
|
||||
|
||||
# Defines color of the frame around the notification window.
|
||||
frame_color = "#ffffff"
|
||||
frame_color = "#e5e9f0"
|
||||
|
||||
# Size of gap to display between notifications - requires a compositor.
|
||||
# If value is greater than 0, separator_height will be ignored and a border
|
||||
|
@ -333,24 +333,24 @@
|
|||
[urgency_low]
|
||||
# IMPORTANT: colors have to be defined in quotation marks.
|
||||
# Otherwise the "#" and following would be interpreted as a comment.
|
||||
background = "#161616"
|
||||
foreground = "#f2f4f8"
|
||||
background = "#3b4252"
|
||||
foreground = "#4c566a"
|
||||
timeout = 10
|
||||
# Icon for notifications with low urgency
|
||||
default_icon = dialog-information
|
||||
|
||||
[urgency_normal]
|
||||
background = "#161616"
|
||||
foreground = "#ffffff"
|
||||
background = "#434c5e"
|
||||
foreground = "#e5e9f0"
|
||||
timeout = 10
|
||||
override_pause_level = 30
|
||||
# Icon for notifications with normal urgency
|
||||
default_icon = dialog-information
|
||||
|
||||
[urgency_critical]
|
||||
background = "#ee5396"
|
||||
foreground = "#525252"
|
||||
frame_color = "#525252"
|
||||
background = "#bf616a"
|
||||
foreground = "#eceff4"
|
||||
frame_color = "#eceff4"
|
||||
timeout = 0
|
||||
override_pause_level = 60
|
||||
# Icon for notifications with critical urgency
|
||||
|
|
|
@ -1,104 +1,73 @@
|
|||
# vim:ft=kitty
|
||||
## name: Carbonfox
|
||||
## author: EdenEast
|
||||
## license: MIT
|
||||
## upstream: https://github.com/EdenEast/nightfox.nvim/blob/main/extra/carbonfox/kitty.conf
|
||||
## blurb: Carbonfox theme from the neovim colorscheme nightfox.nvim.
|
||||
## name: Nord
|
||||
## author: Eric N. Vander Weele
|
||||
## upstream: https://www.nordtheme.com/
|
||||
## blurb: Nord theme utilizing the full Frost and Aurora palette.
|
||||
|
||||
#: All the settings below are colors, which you can choose to modify, or use the
|
||||
#: defaults. You can also add non-color based settings if needed but note that
|
||||
#: these will not work with using kitty @ set-colors with this theme. For a
|
||||
#: reference on what these settings do see https://sw.kovidgoyal.net/kitty/conf/
|
||||
# Basic colors
|
||||
foreground #d8dee9
|
||||
background #2e3440
|
||||
selection_foreground #d8dee9
|
||||
selection_background #434c5e
|
||||
|
||||
#: The basic colors
|
||||
# Cursor colors
|
||||
cursor #d8dee9
|
||||
cursor_text_color #3b4252
|
||||
|
||||
foreground #f2f4f8
|
||||
background #161616
|
||||
selection_foreground #f2f4f8
|
||||
selection_background #2a2a2a
|
||||
# URL underline color when hovering with mouse
|
||||
url_color #0087bd
|
||||
|
||||
# Window border colors and terminal bell colors
|
||||
active_border_color #81a1c1
|
||||
inactive_border_color #4c566a
|
||||
bell_border_color #88c0d0
|
||||
visual_bell_color none
|
||||
|
||||
#: Cursor colors
|
||||
# Tab bar colors
|
||||
active_tab_foreground #3b4252
|
||||
active_tab_background #88c0d0
|
||||
inactive_tab_foreground #e5e9f0
|
||||
inactive_tab_background #4c566a
|
||||
tab_bar_background #3b4252
|
||||
tab_bar_margin_color none
|
||||
|
||||
cursor #f2f4f8
|
||||
cursor_text_color #161616
|
||||
# Mark colors (marked text in the terminal)
|
||||
mark1_foreground #3b4252
|
||||
mark1_background #88c0d0
|
||||
mark2_foreground #3b4252
|
||||
mark2_background #bf616a
|
||||
mark3_foreground #3b4252
|
||||
mark3_background #ebcb8b
|
||||
|
||||
# The basic 16 colors
|
||||
# black
|
||||
color0 #3b4252
|
||||
color8 #4c566a
|
||||
|
||||
#: URL underline color when hovering with mouse
|
||||
# red
|
||||
color1 #bf616a
|
||||
color9 #bf616a
|
||||
|
||||
url_color #25be6a
|
||||
# green
|
||||
color2 #a3be8c
|
||||
color10 #a3be8c
|
||||
|
||||
|
||||
#: kitty window border colors and terminal bell colors
|
||||
|
||||
active_border_color #78a9ff
|
||||
inactive_border_color #535353
|
||||
bell_border_color #3ddbd9
|
||||
# visual_bell_color none
|
||||
|
||||
|
||||
#: OS Window titlebar colors
|
||||
|
||||
# wayland_titlebar_color system
|
||||
# macos_titlebar_color system
|
||||
|
||||
|
||||
#: Tab bar colors
|
||||
|
||||
active_tab_foreground #0c0c0c
|
||||
active_tab_background #78a9ff
|
||||
inactive_tab_foreground #6e6f70
|
||||
inactive_tab_background #2a2a2a
|
||||
# tab_bar_background none
|
||||
# tab_bar_margin_color none
|
||||
|
||||
|
||||
#: Colors for marks (marked text in the terminal)
|
||||
|
||||
# mark1_foreground black
|
||||
# mark1_background #98d3cb
|
||||
# mark2_foreground black
|
||||
# mark2_background #f2dcd3
|
||||
# mark3_foreground black
|
||||
# mark3_background #f274bc
|
||||
|
||||
|
||||
#: The basic 16 colors
|
||||
|
||||
#: black
|
||||
color0 #282828
|
||||
color8 #484848
|
||||
|
||||
#: red
|
||||
color1 #ee5396
|
||||
color9 #f16da6
|
||||
|
||||
#: green
|
||||
color2 #25be6a
|
||||
color10 #46c880
|
||||
|
||||
#: yellow
|
||||
# yellow
|
||||
color3 #ebcb8b
|
||||
color11 #f0d399
|
||||
color11 #d08770
|
||||
|
||||
#: blue
|
||||
color4 #78a9ff
|
||||
color12 #8cb6ff
|
||||
# blue
|
||||
color4 #81a1c1
|
||||
color12 #5e81ac
|
||||
|
||||
#: magenta
|
||||
color5 #be95ff
|
||||
color13 #c8a5ff
|
||||
# magenta
|
||||
color5 #b48ead
|
||||
color13 #b48ead
|
||||
|
||||
#: cyan
|
||||
color6 #33b1ff
|
||||
color14 #52bdff
|
||||
# cyan
|
||||
color6 #88c0d0
|
||||
color14 #8fbcbb
|
||||
|
||||
#: white
|
||||
color7 #dfdfe0
|
||||
color15 #e4e4e5
|
||||
|
||||
|
||||
#: You can set the remaining 240 colors as color16 to color255.
|
||||
|
||||
color16 #3ddbd9
|
||||
color17 #ff7eb6
|
||||
# white
|
||||
color7 #e5e9f0
|
||||
color15 #eceff4
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
# BEGIN_KITTY_THEME
|
||||
# Tokyo Night
|
||||
include current-theme.conf
|
||||
# END_KITTY_THEME
|
Loading…
Add table
Add a link
Reference in a new issue