<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

 <title>Jekyll's blog</title>
 <link href="https://qndev.github.io/jekyll-theme/atom.xml" rel="self"/>
 <link href="https://qndev.github.io/jekyll-theme"/>
 <updated>2019-07-10T04:02:38+00:00</updated>
 <id>https://qndev.github.io/jekyll-theme</id>
 <author>
   <name>NGUYEN DINH QUANG</name>
   <email>quangnd.hust@gmail.com</email>
 </author>

 
 <entry>
   <title>Markdown syntax</title>
   <link href="https://qndev.github.io/jekyll-theme/2019/07/06/markdown-syntax.html"/>
   <updated>2019-07-06T00:00:00+00:00</updated>
   <id>https://qndev.github.io/jekyll-theme/2019/07/06/markdown-syntax</id>
   <content type="html">&lt;h1 id=&quot;headers&quot;&gt;HEADERS&lt;/h1&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;# This is an h1 tag
## This is an h2 tag
###### This is an h6 tag
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h1 id=&quot;this-is-an-h1-tag&quot;&gt;This is an h1 tag&lt;/h1&gt;
&lt;h2 id=&quot;this-is-an-h2-tag&quot;&gt;This is an h2 tag&lt;/h2&gt;
&lt;h6 id=&quot;this-is-an-h6-tag&quot;&gt;This is an h6 tag&lt;/h6&gt;

&lt;h1 id=&quot;lists&quot;&gt;LISTS&lt;/h1&gt;
&lt;h2 id=&quot;unordered&quot;&gt;Unordered&lt;/h2&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;* Item 1
* Item 2
  * Item 2a
  * Item 2b
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ul&gt;
  &lt;li&gt;Item 1&lt;/li&gt;
  &lt;li&gt;Item 2
    &lt;ul&gt;
      &lt;li&gt;Item 2a&lt;/li&gt;
      &lt;li&gt;Item 2b&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;ordered&quot;&gt;Ordered&lt;/h2&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ol&gt;
  &lt;li&gt;Item 1&lt;/li&gt;
  &lt;li&gt;Item 2&lt;/li&gt;
  &lt;li&gt;Item 3
    &lt;ul&gt;
      &lt;li&gt;Item 3a&lt;/li&gt;
      &lt;li&gt;Item 3b&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;h1 id=&quot;images&quot;&gt;IMAGES&lt;/h1&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;![Screenshot home page](/images/screenshot-homepage.png)
Format: ![Alt Text](url)
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/qndev/jekyll-theme/master/images/screenshot.png&quot; alt=&quot;Screenshot home page&quot; /&gt;&lt;/p&gt;

&lt;h1 id=&quot;emphasis&quot;&gt;EMPHASIS&lt;/h1&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

_You **can** combine them_

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;em&gt;This text will be italic&lt;/em&gt;
&lt;em&gt;This will also be italic&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This text will be bold&lt;/strong&gt;
&lt;strong&gt;This will also be bold&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;You &lt;strong&gt;can&lt;/strong&gt; combine them&lt;/em&gt;&lt;/p&gt;

&lt;h1 id=&quot;links&quot;&gt;LINKS&lt;/h1&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;http://github.com - automatic!
[GitHub](http://github.com)
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;http://github.com - automatic!
&lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt;&lt;/p&gt;

&lt;h1 id=&quot;blockquotes&quot;&gt;Blockquotes&lt;/h1&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;As Grace Hopper said:

&amp;gt; I’ve always been more interested
&amp;gt; in the future than in the past.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;As Grace Hopper said:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I’ve always been more interested
in the future than in the past.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1 id=&quot;syntax-highlighting&quot;&gt;Syntax highlighting&lt;/h1&gt;

&lt;h6 id=&quot;rouge&quot;&gt;Rouge&lt;/h6&gt;
&lt;div class=&quot;language-javascript highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;kd&quot;&gt;function&lt;/span&gt; &lt;span class=&quot;nx&quot;&gt;test&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
&lt;span class=&quot;nx&quot;&gt;console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nx&quot;&gt;log&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;look ma’, no spaces&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-java highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;kd&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;HelloWorldApp&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;kd&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kd&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;main&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;String&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;[]&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;{&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;System&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;na&quot;&gt;out&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;na&quot;&gt;println&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Hello World!&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;);&lt;/span&gt; &lt;span class=&quot;c1&quot;&gt;// Display the string.&lt;/span&gt;
    &lt;span class=&quot;o&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;o&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h6 id=&quot;gist&quot;&gt;Gist&lt;/h6&gt;

&lt;script src=&quot;https://gist.github.com/e8ef18051d1b0277f2d7cf78c3fd96fe.js?file=test.js&quot;&gt; &lt;/script&gt;

&lt;script src=&quot;https://gist.github.com/4914f8921f09863f7c3ea2ebbb02206a.js?file=HelloWorld.java&quot;&gt; &lt;/script&gt;

&lt;h1 id=&quot;task-lists&quot;&gt;Task Lists&lt;/h1&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;- [x] this is a complete item
- [ ] this is an incomplete item
- [x] @mentions, #refs, [links](), **formatting**, and &amp;lt;del&amp;gt;tags&amp;lt;/del&amp;gt; supported
- [x] list syntax required (any unordered or ordered list supported)
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ul class=&quot;task-list&quot;&gt;
  &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; class=&quot;task-list-item-checkbox&quot; disabled=&quot;disabled&quot; checked=&quot;checked&quot; /&gt;this is a complete item&lt;/li&gt;
  &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; class=&quot;task-list-item-checkbox&quot; disabled=&quot;disabled&quot; /&gt;this is an incomplete item&lt;/li&gt;
  &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; class=&quot;task-list-item-checkbox&quot; disabled=&quot;disabled&quot; checked=&quot;checked&quot; /&gt;@mentions, #refs, &lt;a href=&quot;&quot;&gt;links&lt;/a&gt;, &lt;strong&gt;formatting&lt;/strong&gt;, and &lt;del&gt;tags&lt;/del&gt; supported&lt;/li&gt;
  &lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; class=&quot;task-list-item-checkbox&quot; disabled=&quot;disabled&quot; checked=&quot;checked&quot; /&gt;list syntax required (any unordered or ordered list supported)&lt;/li&gt;
&lt;/ul&gt;

&lt;h1 id=&quot;emoji&quot;&gt;EMOJI&lt;/h1&gt;
&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;GitHub supports emoji!
:+1: :sparkles: :camel: :tada:
:rocket: :metal: :octocat:
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;GitHub supports emoji!
:+1: :sparkles: :camel: :tada:
:rocket: :metal: :octocat:&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Welcome to my new Jekyll blog!</title>
   <link href="https://qndev.github.io/jekyll-theme/2019/07/05/welcome-to-my-new-blog.html"/>
   <updated>2019-07-05T00:00:00+00:00</updated>
   <id>https://qndev.github.io/jekyll-theme/2019/07/05/welcome-to-my-new-blog</id>
   <content type="html">&lt;p&gt;&lt;strong&gt;Hello world&lt;/strong&gt;, this is my &lt;code class=&quot;highlighter-rouge&quot;&gt;new Jekyll blog&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;I hope you like it!&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Custom Colors</title>
   <link href="https://qndev.github.io/jekyll-theme/2019/07/04/colors.html"/>
   <updated>2019-07-04T00:00:00+00:00</updated>
   <id>https://qndev.github.io/jekyll-theme/2019/07/04/colors</id>
   <content type="html">&lt;table width=&quot;100%&quot;&gt;

&lt;tbody&gt;&lt;tr&gt;
&lt;td style=&quot;background-color: #ff6600;&quot;&gt;#ff6600
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #abcabc;&quot;&gt;#abcabc
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00cccc;&quot;&gt;#00cccc
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f6f6ef;&quot;&gt;#f6f6ef
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #888888;&quot;&gt;#888888
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffffff;&quot;&gt;#ffffff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffdd23;&quot;&gt;#ffdd23
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffc16b;&quot;&gt;#ffc16b
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #bcbcbc;&quot;&gt;#bcbcbc
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00cc33;&quot;&gt;#00cc33
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f06600;&quot;&gt;#f06600
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #b4d5c3;&quot;&gt;#b4d5c3
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff8800;&quot;&gt;#ff8800
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ccccee;&quot;&gt;#ccccee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #a9c2eb;&quot;&gt;#a9c2eb
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #e0e0e0;&quot;&gt;#e0e0e0
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #cccccc;&quot;&gt;#cccccc
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff0000;&quot;&gt;#ff0000
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #006600;&quot;&gt;#006600
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #7fdbff;&quot;&gt;#7fdbff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #e55b00;&quot;&gt;#e55b00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #eeeedd;&quot;&gt;#eeeedd
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff6000;&quot;&gt;#ff6000
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #d2dadd;&quot;&gt;#d2dadd
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #969696;&quot;&gt;#969696
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #808080;&quot;&gt;#808080
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff77dd;&quot;&gt;#ff77dd
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #fa4000;&quot;&gt;#fa4000
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #99badd;&quot;&gt;#99badd
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #4590ff;&quot;&gt;#4590ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #9999ff;&quot;&gt;#9999ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #55b6f2;&quot;&gt;#55b6f2
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #cc0000;&quot;&gt;#cc0000
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #009933;&quot;&gt;#009933
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #338899;&quot;&gt;#338899
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #8db600;&quot;&gt;#8db600
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00bbff;&quot;&gt;#00bbff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #88ccff;&quot;&gt;#88ccff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0066ff;&quot;&gt;#0066ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #4a7aaf;&quot;&gt;#4a7aaf
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #408000;&quot;&gt;#408000
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00bbdd;&quot;&gt;#00bbdd
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #abcdef;&quot;&gt;#abcdef
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f6f6f0;&quot;&gt;#f6f6f0
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffc299;&quot;&gt;#ffc299
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff6623;&quot;&gt;#ff6623
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #abc251;&quot;&gt;#abc251
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff4400;&quot;&gt;#ff4400
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #98c63a;&quot;&gt;#98c63a
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #cc3300;&quot;&gt;#cc3300
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0099cc;&quot;&gt;#0099cc
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f5560a;&quot;&gt;#f5560a
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffff00;&quot;&gt;#ffff00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffff99;&quot;&gt;#ffff99
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #2a96f5;&quot;&gt;#2a96f5
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #66dd66;&quot;&gt;#66dd66
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #30aaff;&quot;&gt;#30aaff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff6f13;&quot;&gt;#ff6f13
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #6192dd;&quot;&gt;#6192dd
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0099ff;&quot;&gt;#0099ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #2c8e33;&quot;&gt;#2c8e33
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #eeccaa;&quot;&gt;#eeccaa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #c8e8ff;&quot;&gt;#c8e8ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #42f459;&quot;&gt;#42f459
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #aa77aa;&quot;&gt;#aa77aa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #90c5ea;&quot;&gt;#90c5ea
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f59fef;&quot;&gt;#f59fef
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #56d34a;&quot;&gt;#56d34a
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #c0ffee;&quot;&gt;#c0ffee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #80a0af;&quot;&gt;#80a0af
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #555555;&quot;&gt;#555555
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #006699;&quot;&gt;#006699
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #3a8fb1;&quot;&gt;#3a8fb1
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #2266aa;&quot;&gt;#2266aa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0ea6d7;&quot;&gt;#0ea6d7
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ccddcc;&quot;&gt;#ccddcc
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #2266ff;&quot;&gt;#2266ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ddffee;&quot;&gt;#ddffee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #88aaaa;&quot;&gt;#88aaaa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #777777;&quot;&gt;#777777
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff77ee;&quot;&gt;#ff77ee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #7fc3e6;&quot;&gt;#7fc3e6
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ccccff;&quot;&gt;#ccccff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #60acff;&quot;&gt;#60acff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00eeee;&quot;&gt;#00eeee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #7fff00;&quot;&gt;#7fff00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #4285f4;&quot;&gt;#4285f4
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #3067aa;&quot;&gt;#3067aa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #6699ff;&quot;&gt;#6699ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00ff00;&quot;&gt;#00ff00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffbb00;&quot;&gt;#ffbb00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #c0c0c0;&quot;&gt;#c0c0c0
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #66ff00;&quot;&gt;#66ff00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #aa66aa;&quot;&gt;#aa66aa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #aaaaaa;&quot;&gt;#aaaaaa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #007aff;&quot;&gt;#007aff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffd090;&quot;&gt;#ffd090
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffcc33;&quot;&gt;#ffcc33
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #6666aa;&quot;&gt;#6666aa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #1fd2c4;&quot;&gt;#1fd2c4
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f2a349;&quot;&gt;#f2a349
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f0f0e4;&quot;&gt;#f0f0e4
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #c8beb0;&quot;&gt;#c8beb0
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffdd99;&quot;&gt;#ffdd99
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #eeeeee;&quot;&gt;#eeeeee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #eb3ab3;&quot;&gt;#eb3ab3
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f49401;&quot;&gt;#f49401
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00cc00;&quot;&gt;#00cc00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffcc00;&quot;&gt;#ffcc00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0bafe6;&quot;&gt;#0bafe6
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff1650;&quot;&gt;#ff1650
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ee33bb;&quot;&gt;#ee33bb
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #e2e2e2;&quot;&gt;#e2e2e2
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #664466;&quot;&gt;#664466
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff6605;&quot;&gt;#ff6605
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #fdcba0;&quot;&gt;#fdcba0
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffac0d;&quot;&gt;#ffac0d
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #a1cbe4;&quot;&gt;#a1cbe4
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #bbbbbb;&quot;&gt;#bbbbbb
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #3aa1d6;&quot;&gt;#3aa1d6
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00cc66;&quot;&gt;#00cc66
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00cc66;&quot;&gt;#00cc66
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #4286f4;&quot;&gt;#4286f4
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00994c;&quot;&gt;#00994c
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #666666;&quot;&gt;#666666
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #e40000;&quot;&gt;#e40000
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #aadd55;&quot;&gt;#aadd55
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #227878;&quot;&gt;#227878
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #eaf0f8;&quot;&gt;#eaf0f8
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #d13d4d;&quot;&gt;#d13d4d
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #aaffaa;&quot;&gt;#aaffaa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #34a8ff;&quot;&gt;#34a8ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #48b9a6;&quot;&gt;#48b9a6
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #77ff77;&quot;&gt;#77ff77
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffa500;&quot;&gt;#ffa500
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #b0ceff;&quot;&gt;#b0ceff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #abc4f3;&quot;&gt;#abc4f3
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #3b5998;&quot;&gt;#3b5998
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #55688a;&quot;&gt;#55688a
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff5e00;&quot;&gt;#ff5e00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffb077;&quot;&gt;#ffb077
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00ddff;&quot;&gt;#00ddff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #6495ed;&quot;&gt;#6495ed
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #aaccff;&quot;&gt;#aaccff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #c0c0a5;&quot;&gt;#c0c0a5
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #aaaaff;&quot;&gt;#aaaaff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #99cc99;&quot;&gt;#99cc99
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #498a78;&quot;&gt;#498a78
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #873609;&quot;&gt;#873609
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #88bbff;&quot;&gt;#88bbff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0074d9;&quot;&gt;#0074d9
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #eeeeff;&quot;&gt;#eeeeff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #dfcdfc;&quot;&gt;#dfcdfc
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #aaccaa;&quot;&gt;#aaccaa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #87cefa;&quot;&gt;#87cefa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffcc66;&quot;&gt;#ffcc66
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #557799;&quot;&gt;#557799
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #77ccff;&quot;&gt;#77ccff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00ccff;&quot;&gt;#00ccff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #caca00;&quot;&gt;#caca00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ccff66;&quot;&gt;#ccff66
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f5f5f5;&quot;&gt;#f5f5f5
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #009900;&quot;&gt;#009900
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #086571;&quot;&gt;#086571
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #b0e2ff;&quot;&gt;#b0e2ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #888ba0;&quot;&gt;#888ba0
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #401010;&quot;&gt;#401010
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #99ccff;&quot;&gt;#99ccff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #1d7112;&quot;&gt;#1d7112
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff00ff;&quot;&gt;#ff00ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff742b;&quot;&gt;#ff742b
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0077ff;&quot;&gt;#0077ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff8937;&quot;&gt;#ff8937
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #3399ff;&quot;&gt;#3399ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #c9f5c9;&quot;&gt;#c9f5c9
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #add8e3;&quot;&gt;#add8e3
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff7700;&quot;&gt;#ff7700
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ffaa00;&quot;&gt;#ffaa00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ef701d;&quot;&gt;#ef701d
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #76a9cf;&quot;&gt;#76a9cf
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #5ab0e0;&quot;&gt;#5ab0e0
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ee5501;&quot;&gt;#ee5501
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff7675;&quot;&gt;#ff7675
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #99bbaa;&quot;&gt;#99bbaa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ee7744;&quot;&gt;#ee7744
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #c6c6c6;&quot;&gt;#c6c6c6
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff8888;&quot;&gt;#ff8888
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #009090;&quot;&gt;#009090
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff6601;&quot;&gt;#ff6601
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #66aa66;&quot;&gt;#66aa66
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff9933;&quot;&gt;#ff9933
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #72a83e;&quot;&gt;#72a83e
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0099ee;&quot;&gt;#0099ee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #beafee;&quot;&gt;#beafee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #55ccaa;&quot;&gt;#55ccaa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #3fff00;&quot;&gt;#3fff00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00dddd;&quot;&gt;#00dddd
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00eeaa;&quot;&gt;#00eeaa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff8c3f;&quot;&gt;#ff8c3f
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #88d4ff;&quot;&gt;#88d4ff
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #999999;&quot;&gt;#999999
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00dd00;&quot;&gt;#00dd00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #e3e3ce;&quot;&gt;#e3e3ce
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #d1c6b4;&quot;&gt;#d1c6b4
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #f05f05;&quot;&gt;#f05f05
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #308014;&quot;&gt;#308014
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #607799;&quot;&gt;#607799
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #556aa3;&quot;&gt;#556aa3
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #d6d6d6;&quot;&gt;#d6d6d6
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #bce784;&quot;&gt;#bce784
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #fc6621;&quot;&gt;#fc6621
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #faaf00;&quot;&gt;#faaf00
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #c8b9aa;&quot;&gt;#c8b9aa
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #8ba9b8;&quot;&gt;#8ba9b8
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff0009;&quot;&gt;#ff0009
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #0cbaba;&quot;&gt;#0cbaba
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #99ccee;&quot;&gt;#99ccee
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00ff91;&quot;&gt;#00ff91
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #336699;&quot;&gt;#336699
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #66ff33;&quot;&gt;#66ff33
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #555554;&quot;&gt;#555554
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #abce50;&quot;&gt;#abce50
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #eebb99;&quot;&gt;#eebb99
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #99ff99;&quot;&gt;#99ff99
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ea8c02;&quot;&gt;#ea8c02
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff6700;&quot;&gt;#ff6700
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #e2f0b6;&quot;&gt;#e2f0b6
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #ff9800;&quot;&gt;#ff9800
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #008080;&quot;&gt;#008080
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #428cf4;&quot;&gt;#428cf4
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;background-color: #00bf00;&quot;&gt;#00bf00
&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;
</content>
 </entry>
 
 <entry>
   <title>Welcome to Jekyll!</title>
   <link href="https://qndev.github.io/jekyll-theme/2019/07/03/welcome-to-jekyll.html"/>
   <updated>2019-07-03T00:00:00+00:00</updated>
   <id>https://qndev.github.io/jekyll-theme/2019/07/03/welcome-to-jekyll</id>
   <content type="html">&lt;p&gt;You’ll find this post in your &lt;code class=&quot;highlighter-rouge&quot;&gt;_posts&lt;/code&gt; directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run &lt;code class=&quot;highlighter-rouge&quot;&gt;jekyll serve&lt;/code&gt;, which launches a web server and auto-regenerates your site when a file is updated.&lt;/p&gt;

&lt;p&gt;To add new posts, simply add a file in the &lt;code class=&quot;highlighter-rouge&quot;&gt;_posts&lt;/code&gt; directory that follows the convention &lt;code class=&quot;highlighter-rouge&quot;&gt;YYYY-MM-DD-name-of-post.ext&lt;/code&gt; and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.&lt;/p&gt;

&lt;p&gt;Jekyll also offers powerful support for code snippets:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-ruby&quot; data-lang=&quot;ruby&quot;&gt;&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;print_hi&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
  &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;Hi, &lt;/span&gt;&lt;span class=&quot;si&quot;&gt;#{&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;print_hi&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Tom'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;c1&quot;&gt;#=&amp;gt; prints 'Hi, Tom' to STDOUT.&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Check out the &lt;a href=&quot;http://jekyllrb.com/docs/home&quot;&gt;Jekyll docs&lt;/a&gt; for more info on how to get the most out of Jekyll. File all bugs/feature requests at &lt;a href=&quot;https://github.com/jekyll/jekyll&quot;&gt;Jekyll’s GitHub repo&lt;/a&gt;. If you have questions, you can ask them on &lt;a href=&quot;https://talk.jekyllrb.com/&quot;&gt;Jekyll Talk&lt;/a&gt;.&lt;/p&gt;

</content>
 </entry>
 

</feed>
