forked from jan-warchol/selenized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkitty-selenized-black.conf
87 lines (68 loc) · 2.45 KB
/
kitty-selenized-black.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# vim:fileencoding=utf-8:ft=conf:foldmethod=marker
# Selenized black color scheme for Kitty
#: Color scheme {{{
#: The foreground and background colors
foreground #b9b9b9
background #181818
#: 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
#: supported by the OS (for instance, when using a compositor under
#: X11). Note that it only sets the default background color's
#: opacity. This is so that things like the status bar in vim,
#: powerline prompts, etc. still look good. But it means that if you
#: use a color theme with a background color in your editor, it will
#: not be rendered as transparent. Instead you should change the
#: default background color in your kitty config and not use a
#: background color in the editor color scheme. Or use the escape
#: codes to set the terminals default colors in a shell script to
#: launch your editor. Be aware that using a value less than 1.0 is a
#: (possibly significant) performance hit. If you want to dynamically
#: change transparency of windows set dynamic_background_opacity to
#: yes (this is off by default as it has a performance cost)
background_opacity 1.0
#: Allow changing of the background_opacity dynamically, using either
#: keyboard shortcuts (increase_background_opacity and
#: decrease_background_opacity) or the remote control facility.
dynamic_background_opacity no
#: How much to dim text that has the DIM/FAINT attribute set. One
#: means no dimming and zero means fully dimmed (i.e. invisible).
dim_opacity 0.625
#: The foreground for text selected with the mouse. A value of none
#: means to leave the color unchanged.
selection_foreground none
#: The background for text selected with the mouse.
selection_background #3b3b3b
#: Tab bar colors
active_tab_foreground #dedede
active_tab_background #3b3b3b
inactive_tab_foreground #777777
inactive_tab_background #181818
tab_bar_background #181818
#: The 16 terminal colors. There are 8 basic colors, each color has a
#: dull and bright version. You can also set the remaining colors from
#: the 256 color table as color16 to color255.
#: black
color0 #252525
color8 #3b3b3b
#: red
color1 #ed4a46
color9 #ff5e56
#: green
color2 #70b433
color10 #83c746
#: yellow
color3 #dbb32d
color11 #efc541
#: blue
color4 #368aeb
color12 #4f9cfe
#: magenta
color5 #eb6eb7
color13 #ff81ca
#: cyan
color6 #3fc5b7
color14 #56d8c9
#: white
color7 #777777
color15 #dedede
#: }}}