<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to turn compliments blue?]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">I would like the compliments text of the default compliments module to be in blue instead of white.  I think this can be done with custom css but I struggled with the instructions in the pinned post.  If someone would please give me a shortcut of how to do it, I would really appreciate your help.</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forum.magicmirror.builders/topic/19424/how-to-turn-compliments-blue</link><generator>RSS for Node</generator><lastBuildDate>Tue, 12 May 2026 13:15:05 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19424.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 11 Feb 2025 03:03:31 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to turn compliments blue? on Tue, 11 Feb 2025 16:06:19 GMT]]></title><description><![CDATA[<p dir="auto">That worked great!  Thank you so much for taking the time to answer my question.</p>
]]></description><link>https://forum.magicmirror.builders/post/123941</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/123941</guid><dc:creator><![CDATA[raspberrypi9]]></dc:creator><pubDate>Tue, 11 Feb 2025 16:06:19 GMT</pubDate></item><item><title><![CDATA[Reply to How to turn compliments blue? on Tue, 11 Feb 2025 04:38:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/raspberrypi9" aria-label="Profile: raspberrypi9">@<bdi>raspberrypi9</bdi></a> which pinned post?</p>
<p dir="auto">the doc<br />
<img src="/assets/uploads/files/1739248121950-snip20250210_3.png" alt="Snip20250210_3.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">says there is a classes config property</p>
<pre><code>{ 
   module: "compliments",  
   position:"....",
   config:{
       classes:"thin xlarge bright",   // default if not specified
       ...
   }
}
</code></pre>
<p dir="auto">so, you could override one of those</p>
<pre><code class="language-css">.compliments .xlarge {
     color: xxxxx;
}
</code></pre>
<p dir="auto">or you could add another classname and configure that</p>
<pre><code>{ 
   module: "compliments",  
   position:"....",
   config:{
       classes:"thin xlarge bright foo",   // default if not specified, this replaces entire list
       ...
   }
}
</code></pre>
<p dir="auto">like this</p>
<pre><code class="language-css">.compliments .foo {
     color: xxxxx;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/123932</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/123932</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 11 Feb 2025 04:38:24 GMT</pubDate></item></channel></rss>