forked from jan-warchol/selenized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitty-selenized-light.conf
87 lines (68 loc) · 2.45 KB
/
kitty-selenized-light.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 light color scheme for Kitty
#: Color scheme {{{
#: The foreground and background colors
foreground #53676d
background #fbf3db
#: 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 #cfcebe
#: Tab bar colors
active_tab_foreground #3a4d53
active_tab_background #cfcebe
inactive_tab_foreground #909995
inactive_tab_background #fbf3db
tab_bar_background #fbf3db
#: 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 #e9e4d0
color8 #cfcebe
#: red
color1 #d2212d
color9 #cc1729
#: green
color2 #489100
color10 #428b00
#: yellow
color3 #ad8900
color11 #a78300
#: blue
color4 #0072d4
color12 #006dce
#: magenta
color5 #ca4898
color13 #c44392
#: cyan
color6 #009c8f
color14 #00978a
#: white
color7 #909995
color15 #3a4d53
#: }}}