blob: 41bb8e11bb5a21ba281a58e36758fe2c0139375b (
plain)
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
|
# The foreground color
foreground #839496
# The background color
background #002b36
# 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.
background_opacity .9
# The foreground for selections
selection_foreground #002b36
# The background for selections
selection_background #586e75
# The 16 terminal colors. There are 8 basic colors, each color has a dull and
# bright version.
# solarized dark
color0 #073642
color8 #002b36
color1 #dc322f
color9 #cb4b16
color2 #859900
color10 #586e75
color3 #b58900
color11 #657b83
color4 #268bd2
color12 #839496
color5 #d33682
color13 #6c71c4
color6 #2aa198
color14 #93a1a1
color7 #eee8d5
color15 #fdf6e3
## black
#color0 #000000
#color8 #4d4d4d
#
## red
#color1 #cc0403
#color9 #f2201f
#
## green
#color2 #19cb00
#color10 #23fd00
#
## yellow
#color3 #cecb00
#color11 #fffd00
#
## blue
#color4 #0d73cc
#color12 #1a8fff
#
## magenta
#color5 #cb1ed1
#color13 #fd28ff
#
## cyan
#color6 #0dcdcd
#color14 #14ffff
#
## white
#color7 #dddddd
#color15 #ffffff
|