1set first-page-column 1
2set guioptions null
3
4set window-title-basename "true"
5set selection-clipboard "clipboard"
6
7
8{{- if eq .theme_variant "dark" }}
9set default-fg "#CAD3F5"
10set default-bg "#24273A"
11
12set completion-bg "#363A4F"
13set completion-fg "#CAD3F5"
14set completion-highlight-bg "#575268"
15set completion-highlight-fg "#CAD3F5"
16set completion-group-bg "#363A4F"
17set completion-group-fg "#8AADF4"
18
19set statusbar-fg "#CAD3F5"
20set statusbar-bg "#363A4F"
21
22set notification-bg "#363A4F"
23set notification-fg "#CAD3F5"
24set notification-error-bg "#363A4F"
25set notification-error-fg "#ED8796"
26set notification-warning-bg "#363A4F"
27set notification-warning-fg "#FAE3B0"
28
29set inputbar-fg "#CAD3F5"
30set inputbar-bg "#363A4F"
31
32set recolor-lightcolor "#24273A"
33set recolor-darkcolor "#CAD3F5"
34
35set index-fg "#CAD3F5"
36set index-bg "#24273A"
37set index-active-fg "#CAD3F5"
38set index-active-bg "#363A4F"
39
40set render-loading-bg "#24273A"
41set render-loading-fg "#CAD3F5"
42
43set highlight-color "#575268"
44set highlight-fg "#F5BDE6"
45set highlight-active-color "#F5BDE6"
46{{- end }}
47{{- if eq .theme_variant "light" }}
48set default-fg "#4C4F69"
49set default-bg "#EFF1F5"
50
51set completion-bg "#CCD0DA"
52set completion-fg "#4C4F69"
53set completion-highlight-bg "#575268"
54set completion-highlight-fg "#4C4F69"
55set completion-group-bg "#CCD0DA"
56set completion-group-fg "#1E66F5"
57
58set statusbar-fg "#4C4F69"
59set statusbar-bg "#CCD0DA"
60
61set notification-bg "#CCD0DA"
62set notification-fg "#4C4F69"
63set notification-error-bg "#CCD0DA"
64set notification-error-fg "#D20F39"
65set notification-warning-bg "#CCD0DA"
66set notification-warning-fg "#FAE3B0"
67
68set inputbar-fg "#4C4F69"
69set inputbar-bg "#CCD0DA"
70
71set recolor-lightcolor "#EFF1F5"
72set recolor-darkcolor "#4C4F69"
73
74set index-fg "#4C4F69"
75set index-bg "#EFF1F5"
76set index-active-fg "#4C4F69"
77set index-active-bg "#CCD0DA"
78
79set render-loading-bg "#EFF1F5"
80set render-loading-fg "#4C4F69"
81
82set highlight-color "#575268"
83set highlight-fg "#EA76CB"
84set highlight-active-color "#EA76CB"
85{{- end }}
86
87#
88# Startup options
89#
90set adjust-open width
91set recolor "true"
92set recolor-keephue "true"