<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
<style>
div.markdown { white-space: normal; }
h1 { font-size: 1.4em; }
h2 { font-size: 1.2em; }
h3 { font-size: 1.1em; }
blockquote { margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #3983C4; color: #3983C4; }
blockquote blockquote { border-left-color: #7CBF0C; color: #7CBF0C; }
pre { margin-left: 15px; margin-right: 15px; padding: 5px; border: thin solid gray; overflow: auto; }
pre.highlighted { color: black; }
div.footnotes li p { margin: 0.2em 0; }
</style>
</head>
<body>
<div class="markdown">
<p dir="auto">On 27 Apr 2016, at 17:09, John Cooper wrote:</p>

<blockquote>
<p dir="auto">I work in a dark room and would like to change the background color of MailMate's windows (viewer and message) from white to gray. Possible?</p>
</blockquote>

<p dir="auto">Well, not in general, but for the message view you can create this file:</p>

<pre><code>~/Library/Application Support/MailMate/Resources/MmMessagesWebView/html_stylesheet.css
</code></pre>

<p dir="auto">Here's an example overriding the background color of all elements:</p>

<pre class="highlighted"><code><span style="color: #657b83">*</span> <span style="color: #657b83">{</span>
    <span style="color: #859900">background-color</span><span style="color: #657b83">:</span> <span style="color: #586e75">lightgray</span> <span style="color: #93a1a1; font-style: italic">!important</span><span style="color: #657b83">;</span>
<span style="color: #657b83">}</span>
</code></pre>



<p dir="auto">-- <br>
Benny</p>
</div>

</body>
</html>