diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2018-07-21 17:21:55 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2018-07-21 17:21:55 +0200 |
commit | d703847f47729fbb7f56efdddab21ee01e858f9c (patch) | |
tree | 6212b87c02be71b44a328614818c226e3bb543bc | |
parent | 5dbaa286ccca4929599b5083435a441b319d8a32 (diff) | |
download | dotfiles-d703847f47729fbb7f56efdddab21ee01e858f9c.tar.xz |
alot: Add custom theme foo to fix some colors for new term theme
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r-- | alot/config | 1 | ||||
-rw-r--r-- | alot/themes/foo | 96 |
2 files changed, 97 insertions, 0 deletions
diff --git a/alot/config b/alot/config index d997000..2f029df 100644 --- a/alot/config +++ b/alot/config @@ -8,6 +8,7 @@ editor_in_thread = True editor_spawn = True editor_cmd = "nvim %s" terminal_cmd = "term" +theme = "foo" [accounts] [[private]] diff --git a/alot/themes/foo b/alot/themes/foo new file mode 100644 index 0000000..68bd9c7 --- /dev/null +++ b/alot/themes/foo @@ -0,0 +1,96 @@ +############################################################################ +# Foo, based on the default theme # +# # +# for alot. © 2012 Patrick Totzke, GNU GPL3+, https://github.com/pazz/alot # +############################################################################ + +[global] + footer = 'standout','','white,bold','dark blue','white,bold','#006' + body = 'default','','dark gray','default','g20','default' + notify_error = 'standout','','white','dark red','white','dark red' + notify_normal = 'default','','light gray','dark gray','light gray','#68a' + prompt = 'default','','light gray','black','light gray','g11' + tag = 'default','','light gray','black','light gray','default' + tag_focus = 'standout, bold','','white','dark gray','#ffa','#68a' +[help] + text = 'default','','default','dark gray','default','g35' + section = 'underline','','bold,underline','dark gray','bold,underline','g35' + title = 'standout','','white','dark blue','white,bold,underline','g35' +[bufferlist] + line_focus = 'standout','','yellow','light gray','#ff8','g20' + line_even = 'default','','light gray','black','default','g3' + line_odd = 'default','','light gray','black','default','default' +[taglist] + line_focus = 'standout','','yellow','light gray','#ff8','g20' + line_even = 'default','','light gray','black','default','g3' + line_odd = 'default','','light gray','black','default','default' +[thread] + arrow_heads = '','','dark red','','#a00','' + arrow_bars = '','','dark red','','#800','' + attachment = 'default','','light gray','dark gray','light gray','g15' + attachment_focus = 'underline','','light gray','light green','light gray','g20' + body = 'default','','light gray','default','light gray','default' + body_focus = 'default','','light gray','default','white','default' + header = 'default','','white','dark gray','white','g30' + header_key = 'default','','white','dark gray','white','g30' + header_value = 'default','','light gray','dark gray','light gray','g30' + + [[summary]] + even = 'default','','white','light blue','white','#006' + odd = 'default','','white','dark blue','white','#068' + focus = 'standout','','white','light gray','#ff8','g20' + +[envelope] + body = 'default','','light gray','default','light gray','default' + header = 'default','','white','dark gray','white','dark gray' + header_key = 'default','','white','dark gray','white','dark gray' + header_value = 'default','','light gray','dark gray','light gray','dark gray' + +[search] + [[threadline]] + normal = 'default','','default','default','#6d6','default' + focus = 'standout','','light gray','light gray','g85','g20' + parts = date,mailcount,authors,subject,tags + [[[date]]] + normal = 'default','','light gray','default','g74','default' + focus = 'standout','','yellow','light gray','yellow','g20' + width = 'fit',10,10 + alignment = right + [[[mailcount]]] + normal = 'default','','light gray','default','g66','default' + focus = 'standout','','yellow','light gray','yellow','g20' + width = 'fit', 5,5 + [[[authors]]] + normal = 'default,underline','','light blue','default','#068','default' + focus = 'standout','','yellow','light gray','yellow','g20' + width = 'fit',0,30 + [[[subject]]] + normal = 'default','','light gray','default','g66','default' + focus = 'standout','','yellow','light gray','yellow','g20' + width = 'weight', 1 + [[[content]]] + normal = 'default','','light gray','default','dark gray','default' + focus = 'standout','','yellow','light gray','yellow','g20' + width = 'weight', 1 + [[[tags]]] + normal = 'bold','','dark cyan','','dark cyan','' + focus = 'standout','','yellow','light gray','yellow','g20' + + # highlight threads containing unread messages + [[threadline-unread]] + tagged_with = 'unread' + normal = 'default','','default,bold','default','#6d6,bold','default' + parts = date,mailcount,authors,subject,tags + [[[date]]] + normal = 'default','','light gray,bold','default','white','default' + alignment = right + [[[mailcount]]] + normal = 'default','','light gray,bold','default','g93','default' + [[[authors]]] + normal = 'default,underline','','light blue,bold','default','#68f','default' + [[[subject]]] + normal = 'default','','light gray,bold','default','g93','default' + [[[content]]] + normal = 'default','','light gray,bold','default','dark gray,bold','default' + [[[tags]]] + normal = 'bold','','dark cyan,bold','','#6dd','' |