<?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 do I highlight all text on the screen?]]></title><description><![CDATA[<p dir="auto">Certain modules have some brighter and dimmer text. How do I make all the text brighter within a given module?</p>
<p dir="auto">The reason for this is that I’m running Back Ground Slide Show and certain module text get lost in brighter images.</p>
]]></description><link>https://forum.magicmirror.builders/topic/15568/how-do-i-highlight-all-text-on-the-screen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 08 Sep 2026 12:17:31 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/15568.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 21 Sep 2021 22:25:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How do I highlight all text on the screen? on Thu, 23 Sep 2021 09:15:36 GMT]]></title><description><![CDATA[<p dir="auto">I use the gradient function of MMM-BackgroundSlideshow and have made many adjustments in custom.css. First of all, I made the dimmed text colors a bit lighter:</p>
<pre><code>:root {
  --color-text: #e6e6e6;
  --color-text-dimmed: #f5f5f5;
  --color-text-bright: #ffffff;

}
</code></pre>
<p dir="auto">They can also all three be given the same bright color, e.g. #ffffff for white.</p>
<p dir="auto">Then I checked each module to see if it used the default fonts, font-weight, and text colors. If not this was changed. For the default calendar, the times were a little darker than the event title. Here are my adjustments:</p>
<pre><code>.calendar .time {
      color: var(--color-text-bright);
      font-weight: 400;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/94781</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/94781</guid><dc:creator><![CDATA[MacG]]></dc:creator><pubDate>Thu, 23 Sep 2021 09:15:36 GMT</pubDate></item><item><title><![CDATA[Reply to How do I highlight all text on the screen? on Wed, 22 Sep 2021 12:11:23 GMT]]></title><description><![CDATA[<p dir="auto">I use this in my modules. I find it to be very helpful for me.</p>
<p dir="auto">module.clock {<br />
background-color:rgba(255,255,255,0.5);<br />
border-radius: 8px;<br />
padding: 8px;</p>
<p dir="auto">The last number in the background color is the brightness for the color<br />
I hope this helps</p>
]]></description><link>https://forum.magicmirror.builders/post/94743</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/94743</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Wed, 22 Sep 2021 12:11:23 GMT</pubDate></item></channel></rss>