pick-colors.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="generator" content="pandoc" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
  7. <title>Color Pickers</title>
  8. <style>
  9. code{white-space: pre-wrap;}
  10. span.smallcaps{font-variant: small-caps;}
  11. span.underline{text-decoration: underline;}
  12. div.column{display: inline-block; vertical-align: top; width: 50%;}
  13. div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
  14. ul.task-list{list-style: none;}
  15. .display.math{display: block; text-align: center; margin: 0.5rem auto;}
  16. </style>
  17. <link rel="stylesheet" href="C:\SGZ_Pro\Hobbys\Writing\Org\pages\blog\styles.css" />
  18. <!--[if lt IE 9]>
  19. <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
  20. <![endif]-->
  21. <link rel='stylesheet' type='text/css' href='styles.css' />
  22. </head>
  23. <body>
  24. <header id="title-block-header">
  25. <h1 class="title">Color Pickers</h1>
  26. </header>
  27. <h1 id="color-pickers-in-software">Color pickers in software</h1>
  28. <p>This is a tutorial on how to pick colors. Specifically with <a href="https://en.wikipedia.org/wiki/Color_picker">Color Pickers</a> I am by no means an expert in color but I would like to help people pick colors at least the way I like to do it.</p>
  29. <p><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Gimp_color_selector_03.gif/330px-Gimp_color_selector_03.gif" /></p>
  30. <p>Up above is GIMP's color picker I found on wikipedia. As you can see there are A LOT of color pickers available in a lot of software. The Rectangle or the Triangle one's I think are easier because you see the color spectrum.</p>
  31. <h2 id="color-slider">Color slider</h2>
  32. <p>The color slider shows a vertical line gradient between ordinary colors like Red, Blue and Yellow etc. These are kind of like crayons. They are sort of bland everyone knows what they are.</p>
  33. <h2 id="color-canvas">Color Canvas</h2>
  34. <p>Next to the color slider is the color canvas. It shows the color you picked on the slider as a gradient with the color black. You can also get some white color from here. Basicly on this color canvas you can kind of edit the color to be super <strong>EPIC</strong>.</p>
  35. <h1 id="general-rules-least-to-most-importance">General Rules (Least to Most Importance)</h1>
  36. <h2 id="black-white">Black &amp; White</h2>
  37. <p>White <code class="verbatim">#ffffff</code> and Black <code class="verbatim">#000000</code> are very <strong>extreme</strong> colors they probably do have a usecase but rarely. They aren't very appealing colors. Also in real life you generally don't see something so dark or bright as <code class="verbatim">#ffffff</code> or <code class="verbatim">#000000</code>. (depends on the quality of your screen). So when you want a <strong>BLACK</strong> color tone it down by making it a bit more grey.</p>
  38. <p><img src="https://zortazert.codeberg.page/images/Drip%20+%20chadoku.png" width="300" /></p>
  39. <p>Here is an example of Chadoku I made wearing sun glasses. The sunglasses have a bit of grey in them. In my opinion this is much better than if I put <code class="verbatim">#000000</code>.</p>
  40. <h2 id="saturation">Saturation</h2>
  41. <h2 id="value">Value</h2>
  42. <h2 id="contrast">Contrast</h2>
  43. <h1 id="extra-recources">Extra recources</h1>
  44. <ul>
  45. <li>A video by Brad Colbow about contrast in colors <a href="https://invidio.xamh.de/watch?v=b-PqO-ILcYo">https://invidio.xamh.de/watch?v=b-PqO-ILcYo</a></li>
  46. <li>Another video by Brad Colbow about color theory <a href="https://invidio.xamh.de/watch?v=NBg3GjrcMF4">https://invidio.xamh.de/watch?v=NBg3GjrcMF4</a></li>
  47. <li>Wikipedia's article on Color Pickers <a href="https://en.wikipedia.org/wiki/Color_picker">https://en.wikipedia.org/wiki/Color_picker</a></li>
  48. </ul>
  49. <h1 id="license">License</h1>
  50. <hr>
  51. <footer>
  52. <a rel='license' href='http://creativecommons.org/licenses/by-sa/4.0/'><img alt='Creative Commons License' style='border-width:0' width='88' height='31' src='../images/cc-by-sa.png' /></a><br>
  53. Unless otherwise noted, all content on this website is Copyright Zortazert 2021-2022 and is licensed under <a rel='license' href='http://creativecommons.org/licenses/by-sa/4.0/'>CC BY-SA 4.0</a>.
  54. </footer>
  55. </body>
  56. </html>