<?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[default calendar - individual icon colors?]]></title><description><![CDATA[<p dir="auto">I’m loading 2 calendars, one with the US Holidays and another with friend’s birthdays and anniversaries.  I’ve figured out how to change the color of all of the icons which adds a nice bit of color, but I was wondering if it was possible to change the color of the birthday cake icon independently of the calendar-check-o icon.</p>
]]></description><link>https://forum.magicmirror.builders/topic/277/default-calendar-individual-icon-colors</link><generator>RSS for Node</generator><lastBuildDate>Tue, 08 Sep 2026 21:13:52 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/277.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 27 Jun 2016 02:15:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to default calendar - individual icon colors? on Mon, 13 Jun 2022 18:31:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/pugsly" aria-label="Profile: pugsly">@<bdi>pugsly</bdi></a> Figured it out…</p>
<p dir="auto">.fas.fa-fw.fa-calendar {<br />
color: #ffffff; /* white <em>/<br />
}<br />
.fas.fa-fw.fa-birthday-cake {<br />
color: #00ffff; /</em> cyan <em>/<br />
}<br />
.fas.fa-fw.fa-gift {<br />
color: #ffff00; /</em> Yellow <em>/<br />
}<br />
.fas.fa-fw.fa-institution {<br />
color: #ff0000; /</em> Red <em>/<br />
}<br />
.fas.fa-fw.fa.fa-building-o {<br />
color: #00ff00; /</em> Lime */</p>
]]></description><link>https://forum.magicmirror.builders/post/102268</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/102268</guid><dc:creator><![CDATA[pugsly]]></dc:creator><pubDate>Mon, 13 Jun 2022 18:31:11 GMT</pubDate></item><item><title><![CDATA[Reply to default calendar - individual icon colors? on Thu, 09 Mar 2017 03:14:12 GMT]]></title><description><![CDATA[<p dir="auto">I had this working, and now the icons are just gray, and no matter what I set them to it doesn’t change.  I am not sure what would have changed.</p>
]]></description><link>https://forum.magicmirror.builders/post/16886</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/16886</guid><dc:creator><![CDATA[pugsly]]></dc:creator><pubDate>Thu, 09 Mar 2017 03:14:12 GMT</pubDate></item><item><title><![CDATA[Reply to default calendar - individual icon colors? on Mon, 27 Jun 2016 17:47:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kirash4" aria-label="Profile: KirAsh4">@<bdi>KirAsh4</bdi></a><br />
Thank you for the help!  It looks great!</p>
]]></description><link>https://forum.magicmirror.builders/post/2029</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/2029</guid><dc:creator><![CDATA[Shockwave]]></dc:creator><pubDate>Mon, 27 Jun 2016 17:47:37 GMT</pubDate></item><item><title><![CDATA[Reply to default calendar - individual icon colors? on Mon, 27 Jun 2016 16:55:26 GMT]]></title><description><![CDATA[<p dir="auto">Each symbol is wrapped in CSS <code>span</code> tags allowing you to set your own styles to them. If you look at the actual HTML, you’ll see something similar to this:</p>
<pre><code>&lt;tr class="normal"&gt;
  &lt;td class="symbol"&gt;&lt;span class="fa fa-birthday-cake"&gt;...&lt;/span&gt;&lt;/td&gt;
  &lt;td class="title bright"&gt;Stacey Donaldson&lt;/td&gt;
  &lt;td class="time light"&gt;Today&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="normal"&gt;
  &lt;td class="symbol"&gt;&lt;span class="fa fa-calendar"&gt;&lt;/span&gt;&lt;/td&gt;
  &lt;td class="title bright"&gt;AJ Visit&lt;/td&gt;
  &lt;td class="time light"&gt;Jul 3rd&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="normal"&gt;
  &lt;td class="symbol"&gt;&lt;span class="fa fa-calendar-check-o "&gt;&lt;/span&gt;
  &lt;/td&gt;&lt;td class="title bright"&gt;Independence Day&lt;/td&gt;
  &lt;td class="time light"&gt;Jul 4th&lt;/td&gt;
&lt;/tr&gt;
</code></pre>
<p dir="auto">Of interest is the line that specifies the <code>symbol</code> class. Look at the actual symbol being used. Notice how each one is slightly different:</p>
<pre><code>&lt;span class="fa fa-birthday-cake"&gt;...&lt;/span&gt;
&lt;span class="fa fa-calendar"&gt;...&lt;/span&gt;
&lt;span class="fa fa-calendar-check-o "&gt;...&lt;/span&gt;
</code></pre>
<p dir="auto">Incidentally, those correspond to the symbols I specified in my config file. You can manipulate those. In <code>~MagicMirror/css/custom.css</code> add the following:</p>
<pre><code>.fa.fa-calendar {
  color: #ffff00; /* Yellow */
}
.fa.fa-birthday-cake {
  color: #ff0000; /* Red */
}
.fa.fa-calendar-check-o {
  color: #ff00ff; /* Magenta */
}
</code></pre>
<p dir="auto">Reload.</p>
]]></description><link>https://forum.magicmirror.builders/post/2019</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/2019</guid><dc:creator><![CDATA[KirAsh4]]></dc:creator><pubDate>Mon, 27 Jun 2016 16:55:26 GMT</pubDate></item></channel></rss>