Color schemes
=============

.. raw:: html

    <embed>

    <p>
    Default</br>
    <svg width="500" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg">
      <defs>
          <linearGradient id="Gradient1">
            <stop class="stop1-001" offset="0%"/>
            <stop class="stop2-001" offset="100%"/>
          </linearGradient>

          <style type="text/css"><![CDATA[
            #rect1 { fill: url(#Gradient1); }
            .stop1-001 { stop-color: #9acd32; }
            .stop2-001 { stop-color: red; }
          ]]></style>

      </defs>

      <rect x="0" y="0" width="500" height="20" id="rect1" />
    </svg></p>

    <p>Traffic</br>
    <svg width="500" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg">
      <defs>
          <linearGradient id="Gradient2">
            <stop class="stop1-002" offset="0%"/>
            <stop class="stop2-002" offset="50%"/>
            <stop class="stop3-002" offset="100%"/>
          </linearGradient>

          <style type="text/css"><![CDATA[
            #rect2 { fill: url(#Gradient2); }
            .stop1-002 { stop-color: #9acd32; }
            .stop2-002 { stop-color: gold; }
            .stop3-002 { stop-color: red; }
          ]]></style>

      </defs>

      <rect x="0" y="0" width="500" height="20" id="rect2" />
    </svg></p>

    <p>Celsius</br>
    <svg width="500" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg">
      <defs>
          <linearGradient id="Gradient3">
            <stop class="stop1-003" offset="0%"/>
            <stop class="stop2-003" offset="25%"/>
            <stop class="stop3-003" offset="50%"/>
            <stop class="stop4-003" offset="75%"/>
            <stop class="stop5-003" offset="100%"/>
          </linearGradient>

          <style type="text/css"><![CDATA[
            #rect3 { fill: url(#Gradient3); }
            .stop1-003 { stop-color: turquoise; }
            .stop2-003 { stop-color: #99cc00; }
            .stop3-003 { stop-color: #ffcc00; }
            .stop4-003 { stop-color: orange; }
            .stop5-003 { stop-color: red; }
          ]]></style>

      </defs>

      <rect x="0" y="0" width="500" height="20" id="rect3" />
    </svg></p>

    <p>Cividis</br>
    <svg width="500" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg">
      <defs>
          <linearGradient id="Gradient4">
            <stop class="stop1-004" offset="0%"/>
            <stop class="stop2-004" offset="100%"/>
          </linearGradient>

          <style type="text/css"><![CDATA[
            #rect4 { fill: url(#Gradient4); }
            .stop1-004 { stop-color: #00204e; }
            .stop2-004 { stop-color: #feea5a; }
          ]]></style>

      </defs>

      <rect x="0" y="0" width="500" height="20" id="rect4" />
    </svg></p>

    <p>Parula</br>
    <svg width="500" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg">
      <defs>
          <linearGradient id="Gradient5">
            <stop class="stop1-005" offset="0%"/>
            <stop class="stop2-005" offset="25%"/>
            <stop class="stop3-005" offset="50%"/>
            <stop class="stop4-005" offset="75%"/>
            <stop class="stop5-005" offset="100%"/>
          </linearGradient>

          <style type="text/css"><![CDATA[
            #rect5 { fill: url(#Gradient5); }
            .stop1-005 { stop-color: #31298a; }
            .stop2-005 { stop-color: #1186d3; }
            .stop3-005 { stop-color: #33b7a0; }
            .stop4-005 { stop-color: #d5ba55; }
            .stop5-005 { stop-color: #f9fb09; }
          ]]></style>

      </defs>

      <rect x="0" y="0" width="500" height="20" id="rect5" />
    </svg></p>

    <p>Viridis</br>
    <svg width="500" height="20" version="1.1" xmlns="http://www.w3.org/2000/svg">
      <defs>
          <linearGradient id="Gradient6">
            <stop class="stop1-006" offset="0%"/>
            <stop class="stop2-006" offset="25%"/>
            <stop class="stop3-006" offset="50%"/>
            <stop class="stop4-006" offset="75%"/>
            <stop class="stop5-006" offset="100%"/>
          </linearGradient>

          <style type="text/css"><![CDATA[
            #rect6 { fill: url(#Gradient6); }
            .stop1-006 { stop-color: #420156; }
            .stop2-006 { stop-color: #39578c; }
            .stop3-006 { stop-color: #20928c; }
            .stop4-006 { stop-color: #60ca56; }
            .stop5-006 { stop-color: #fce93b; }
          ]]></style>

      </defs>

      <rect x="0" y="0" width="500" height="20" id="rect6" />
    </svg></p>

    </embed>
