<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body><div style="font-family: sans-serif;"><div class="markdown" style="white-space: normal;">
<p dir="auto">On 30 Oct 2022, at 23:07, RANDY ABBOTT wrote:</p>
</div><div class="plaintext" style="white-space: normal;"><blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;"><p dir="auto">What keyword should I use in the Styles.plist file to color unread messages in a mailbox? I tried \\Unseen but that doesn't seem to work.</p>
</blockquote></div>
<div class="markdown" style="white-space: normal;">
<p dir="auto">You’ll have to do the opposite using the \Seen keyword. Here is my Styles.plist, which turns messages gray if they are marked as “seen”, and red if they are “flagged”:</p>
<pre style="margin-left: 15px; margin-right: 15px; padding: 5px; background-color: #F7F7F7; border-radius: 5px 5px 5px 5px; overflow-x: auto; max-width: 90vw;"><code style="margin: 0 0; border-radius: 3px; background-color: #F7F7F7; padding: 0px;">{   styles = (
        {   type = keyword;
            keyword = ‘\\Flagged';
            color = "#FF6666";
        },
        {    type = keyword;
             keyword = ‘\\Seen';
             color = "#888888";
        },
    );
}
</code></pre>
<p dir="auto">I also enable “Bold font for unread messages” in the MailMate preferences under the Viewer tab, so unread messages stand out nicely.</p>
</div><div class="plaintext" style="white-space: normal;"><blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;"><p dir="auto">Also, it seems that choosing Multicolor for Colors doesn't seem to do anything?</p>
</blockquote></div>
<div class="markdown" style="white-space: normal;">
<p dir="auto">No idea what the Multicolor option does, but it’s new and might be only half-baked.</p>
<p dir="auto">Glenn P. Parker<br>
<a href="mailto:glenn.parker@comcast.net" style="color: #3983C4;">glenn.parker@comcast.net</a></p>

</div>
</div>
</body>

</html>