<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Neha</title>
    <description>The latest articles on DEV Community by Neha (@rneha725).</description>
    <link>https://dev.to/rneha725</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F236845%2F1ba20b98-37c0-49e7-a95a-c604e4463353.jpeg</url>
      <title>DEV Community: Neha</title>
      <link>https://dev.to/rneha725</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rneha725"/>
    <language>en</language>
    <item>
      <title>FreeCodeCamp: Tribute Page</title>
      <dc:creator>Neha</dc:creator>
      <pubDate>Tue, 07 Jul 2020 16:49:23 +0000</pubDate>
      <link>https://dev.to/rneha725/freecodecamp-tribute-page-2i3p</link>
      <guid>https://dev.to/rneha725/freecodecamp-tribute-page-2i3p</guid>
      <description>&lt;p&gt;I have been working on my CSS skills. Still a beginner though.&lt;/p&gt;

&lt;p&gt;I tried this challenge from FCC: &lt;a href="https://www.freecodecamp.org/learn/responsive-web-design/responsive-web-design-projects/build-a-tribute-page"&gt;https://www.freecodecamp.org/learn/responsive-web-design/responsive-web-design-projects/build-a-tribute-page&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;and somehow ,using my naive-sleep-deprive CSS, created the pen. I used FlexBox, but it can be done without it too.&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/rneha725/embed/OJMQzdZ?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>css</category>
      <category>webdev</category>
    </item>
    <item>
      <title>hsl() and hsla() in css</title>
      <dc:creator>Neha</dc:creator>
      <pubDate>Sun, 28 Jun 2020 11:43:55 +0000</pubDate>
      <link>https://dev.to/rneha725/hsl-and-hsla-in-css-31j3</link>
      <guid>https://dev.to/rneha725/hsl-and-hsla-in-css-31j3</guid>
      <description>&lt;p&gt;&lt;i&gt;hsl&lt;/i&gt; stands for hue, saturation and lightness. An extra &lt;i&gt;a&lt;/i&gt; in &lt;i&gt;hsla&lt;/i&gt; function represents an alpha channel that defines the opacity of the color.&lt;/p&gt;

&lt;p&gt;In CSS, these functions can be used anywhere, where color value is required. For example, backgroud-color, color etc.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Color Wheel:&lt;/b&gt;&lt;br&gt;
Color wheel is a simpler way to look at the CSS colors. It works in clockwise direction. Starting it's journey from color red.&lt;br&gt;
I will be using the example of color wheel from this &lt;a href="https://www.canva.com/colors/color-wheel/"&gt;site&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--APW5p13I--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/5zkceofkmps0jdxfjmx8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--APW5p13I--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/5zkceofkmps0jdxfjmx8.png" alt="hsl dimnensions on color wheel"&gt;&lt;/a&gt;&lt;br&gt;
Sorry for using comic sans :P, I still don't know why people hate it so much.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Components: &lt;/b&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;hue: hue ranges from 0 to 360&lt;sup&gt;o&lt;/sup&gt;. O represents red; 120 represent green and; 240 represents blue.&lt;/li&gt;
&lt;li&gt;Saturation: It is represented in percentage and it represents the intensity of the hue. In simpler words, how much grey or dullness you want in the color. 0 saturation means all grey color. 100% means pure color. In the color wheel, if you will draw a line for the given hue(let's say 120), then saturation will be equivalent to moving onto a line drawn for the degree 120. 
I will highly recommend trying out the color wheel
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Tuq5Ejlw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/b7nj0ehzz4s00jroisx3.png" alt="Hue and Saturation for Green color"&gt;
&lt;/li&gt;
&lt;li&gt;Lightness: Lightness decides how much percentage of black or white is required. 0% means no white, 25% means 25% white and 75% black; 100% means 100% white. This is useful in creating the shades of a color, that can be used for example, in shadowing. So moving the outer circle dot will create the shades of chosen color.
&lt;p&gt;In &lt;i&gt;hsla()&lt;/i&gt;, we have another parameter for opacity;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Opacity: Opacity varies from 0 to 1. 0 being transparent and 1 is completely opaque. So an &lt;i&gt;x&lt;/i&gt; value of opacity will define the degree of visibility on a given background.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;b&gt;Some Examples:&lt;br&gt;
&lt;code&gt;#p1 {background-color: hsl(120, 100%, 50%);}   /* green */&lt;/code&gt;&lt;br&gt;
&lt;code&gt;#p2 {background-color: hsl(120, 100%, 75%);}   /* light green */&lt;/code&gt;&lt;br&gt;
&lt;code&gt;#p1 {background-color: hsla(120, 100%, 50%, 0.3);}   /* green with opacity */&lt;/code&gt;&lt;br&gt;
&lt;code&gt;#p2 {background-color: hsla(120, 100%, 75%, 0.3);}   /* light green with opacity */&lt;br&gt;
&lt;/code&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading!&lt;/p&gt;

</description>
      <category>css</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
