blob: 63bf9968719a5f50d6ec24c99fa71233f01b39f9 (
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
|
# Dracula color theme for Zathura
# link:( https://github.com/dracula/dracula-theme#color-palette )
# Swaps Foreground for Background to get a light version
# Comment after the color is the color's name, as it appears in the palette
# Light/Default mode settings:
#
#
set notification-error-bg "#ff5555" # Red
set notification-error-fg "#f8f8f2" # Foreground
set notification-warning-bg "#ffb86c" # Orange
set notification-warning-fg "#282a36" # Selection
set notification-bg "#44475a" # Background
set notification-fg "#f8f8f2" # Foreground
set completion-bg "#282a36" # Background
set completion-fg "#f8f8f2" # Comment
set completion-group-bg "#282a36" # Background
set completion-group-fg "#50fa7b" # Comment
set completion-highlight-bg "#bd93f9" # Selection
set completion-highlight-fg "#282a36" # Foreground
#set index-bg "#282a36" # Background
set index-bg "#1B0F1C" # Background
set index-fg "#f8f8f2" # Foreground
set index-active-bg "#bd93f9" # Current Line
set index-active-fg "#282a36" # Foreground
set inputbar-bg "#44475a" # Background
set inputbar-fg "#f8f8f2" # Foreground
set statusbar-bg "#44475a" # Background
set statusbar-fg "#f8f8f2" # Foreground
set highlight-color "#ff79c6" # Orange
set highlight-active-color "#ffb86c" # Pink
#set default-bg "#282a36" # Background
set default-bg "#000000" # Background
set default-bg rgba(0,0,0,0.8)
set default-fg "#f8f8f2" # Foreground
set render-loading true
set render-loading-fg "#282a36" # Background
set render-loading-bg "#f8f8f2" # Foreground
set statusbar-bg "#1B0F1C"
set statusbar-fg "#711C91"
set inputbar-bg "#1B0F1C"
set inputbar-fg "#711C91"
#set notification-bg "#212121"
#set notification-fg "#EEFFFF"
#set notification-error-bg "#212121"
#set notification-error-fg "#F07178"
#set notification-warning-bg "#212121"
#set notification-warning-fg "#F07178"
set highlight-color "#FFCB6B"
set highlight-active-color "#82AAFF"
# Recolor mode settings
#
#
#set recolor-lightcolor "#282a36" # Background
set recolor-lightcolor "#000000" # Background
set recolor-lightcolor rgba(0,0,0,0) # Background
#set recolor-darkcolor "#f8f8f2" # Foreground
set recolor-darkcolor "#711C91" # Foreground
# Startup options
#
#
set adjust-open width
set recolor true
|