<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Raymond P. Burkholder - Things I Do - HTML</title>
    <link>https://blog.raymond.burkholder.net/</link>
    <description>In And Around Technology and The Arts</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.7.2 - http://www.s9y.org/</generator>
    <pubDate>Sat, 16 Mar 2019 17:30:04 GMT</pubDate>

    <image>
        <url>https://blog.raymond.burkholder.net/templates/bulletproof/img/s9y_banner_small.png</url>
        <title>RSS: Raymond P. Burkholder - Things I Do - HTML - In And Around Technology and The Arts</title>
        <link>https://blog.raymond.burkholder.net/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Web Site Colours</title>
    <link>https://blog.raymond.burkholder.net/index.php?/archives/983-Web-Site-Colours.html</link>
            <category>HTML</category>
    
    <comments>https://blog.raymond.burkholder.net/index.php?/archives/983-Web-Site-Colours.html#comments</comments>
    <wfw:comment>https://blog.raymond.burkholder.net/wfwcomment.php?cid=983</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.raymond.burkholder.net/rss.php?version=2.0&amp;type=comments&amp;cid=983</wfw:commentRss>
    

    <author>nospam@example.com (Raymond P. Burkholder)</author>
    <content:encoded>
    &lt;p&gt;There are a few web sites which have had quite a bit of work done to them to make available colour selections.

&lt;p&gt;I think &lt;a href=&quot;http://paletton.com&quot; target=_blankj&gt;paletton&lt;/a&gt; is probably my favorite.  They have a two part selector choosing a colour once choosing a variant of: a) monochromatic, b) adjacent 3 colour, c) triad 3 colour, d) tetrad 4 colour, or e) free style with 4 colour.  Once chosen, you can emit the colour selection as html, css, sas, text, or a couple of other styles.

&lt;p&gt;Next up is the &lt;a href=&quot;https://color.adobe.com/create/color-wheel&quot; target=_blank&gt;Adobe Color CC&lt;/a&gt;.  It has variants of analogous, monochromatic, triad, complementary, compound, shades, and custom.

&lt;p&gt;A few other choosers:

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;http://www.colorsontheweb.com/Color-Tools/Color-Wizard&quot; target=_blank&gt;Colors on the Web&lt;/a&gt; Color Wizard
  &lt;li&gt;&lt;a href=&quot;https://www.w3schools.com/colors/colors_picker.asp&quot; target=_blank&gt;HTML Color Picker&lt;/a&gt; from w3schools
  &lt;li&gt;&lt;a href=&quot;https://www.sitepoint.com/website-color-selection/&quot; target=_blank&gt;Color Emotion Guide&lt;/a&gt; using a chart of existing logos
  &lt;li&gt;&lt;a href=&quot;https://csscolors.io/&quot; target=_blank&gt;csscolors.io&lt;/a&gt; - added here 2019/0/3/06, I think similar to others, just different presentation
  &lt;li&gt;&lt;a href=&quot;https://colorhunt.co/&quot; target=_blank&gt;Colour Hunt&lt;/a&gt; linked from &lt;a href=&quot;https://news.ycombinator.com/item?id=19406608&quot; target=_blank&gt;Hacker News&lt;/a&gt;
  &lt;/ul&gt; 
    </content:encoded>

    <pubDate>Wed, 02 Jan 2019 01:07:46 +0000</pubDate>
    <guid isPermaLink="false">https://blog.raymond.burkholder.net/index.php?/archives/983-guid.html</guid>
    
</item>
<item>
    <title>Monospaced Fonts For Web Pages</title>
    <link>https://blog.raymond.burkholder.net/index.php?/archives/537-Monospaced-Fonts-For-Web-Pages.html</link>
            <category>HTML</category>
    
    <comments>https://blog.raymond.burkholder.net/index.php?/archives/537-Monospaced-Fonts-For-Web-Pages.html#comments</comments>
    <wfw:comment>https://blog.raymond.burkholder.net/wfwcomment.php?cid=537</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.raymond.burkholder.net/rss.php?version=2.0&amp;type=comments&amp;cid=537</wfw:commentRss>
    

    <author>nospam@example.com (Raymond P. Burkholder)</author>
    <content:encoded>
    &lt;p&gt;To present my code and command snippets, I should be using &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; rather than &amp;lt;pre&amp;gt;...&amp;lt;/pre&amp;gt; 
enclosures.  But since the &#039;pre&#039; enclosure gets things closer to what I want in the first place, force of habit has 
kept me there, rather than using the more correct &#039;code&#039; enclosure.

&lt;p&gt;Anyway, to get decent looking monospaced fonts into my &#039;pre&#039; enclosures, the following CSS snippet offers an ordered 
sequence of fonts to try:

&lt;blockquote&gt;&lt;pre&gt;
pre {
  font-family: &quot;Lucida Console&quot;, &quot;Andale Mono&quot;, &quot;OCR A Extended&quot;, &quot;Fixedsys&quot;,
                   &quot;Terminal&quot;, &quot;Courier&quot;, &#039;Courier New&#039;, monospace;
  font-size: 110%;
}
&lt;/pre&gt;&lt;/blockquote&gt;

&lt;p&gt;The above is the result of a long list of comments at 
&lt;a href=&quot;http://bytes.com/topic/html-css/answers/96085-fixed-size-width-font-usable-recommendable&quot; target=_blank&gt;Bytes IT&lt;/a&gt;.

&lt;p&gt;There were also some references to structured text recommendations:
&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;http://www.w3.org/TR/REC-html40/struct/text.html&quot; target=_blank&gt;www.w3.org&lt;/a&gt;
  &lt;li&gt;&lt;a href=&quot;http://www.codestyle.org/css/font-family/index.shtml&quot; target=_blank&gt;www.codestyle.org&lt;/a&gt;
  &lt;/ul&gt; 
    </content:encoded>

    <pubDate>Fri, 23 Aug 2013 17:38:50 +0000</pubDate>
    <guid isPermaLink="false">https://blog.raymond.burkholder.net/index.php?/archives/537-guid.html</guid>
    
</item>

</channel>
</rss>
