<?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: HermesS55</title>
    <description>The latest articles on DEV Community by HermesS55 (@hermess55).</description>
    <link>https://dev.to/hermess55</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%2F3714729%2Ff5b09ed3-56c4-4e9d-bead-431d2f201f36.jpeg</url>
      <title>DEV Community: HermesS55</title>
      <link>https://dev.to/hermess55</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hermess55"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>HermesS55</dc:creator>
      <pubDate>Fri, 16 Jan 2026 12:09:46 +0000</pubDate>
      <link>https://dev.to/hermess55/-10g9</link>
      <guid>https://dev.to/hermess55/-10g9</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/hermess55" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3714729%2Ff5b09ed3-56c4-4e9d-bead-431d2f201f36.jpeg" alt="hermess55"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/hermess55/how-i-built-a-saas-ui-kit-in-pure-htmlcssjs-2idi" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;How I Built a SaaS UI Kit in Pure HTML/CSS/JS&lt;/h2&gt;
      &lt;h3&gt;HermesS55 ・ Jan 16&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How I Built a SaaS UI Kit in Pure HTML/CSS/JS</title>
      <dc:creator>HermesS55</dc:creator>
      <pubDate>Fri, 16 Jan 2026 12:03:24 +0000</pubDate>
      <link>https://dev.to/hermess55/how-i-built-a-saas-ui-kit-in-pure-htmlcssjs-2idi</link>
      <guid>https://dev.to/hermess55/how-i-built-a-saas-ui-kit-in-pure-htmlcssjs-2idi</guid>
      <description>&lt;p&gt;In a world dominated by React, Vue, and a dozen other frameworks, I decided to take a step back and build something premium using only the fundamentals. Here is the story behind &lt;strong&gt;Lumina Kit&lt;/strong&gt;, a high-end SaaS UI Kit built with nothing but pure HTML, CSS, and vanilla JavaScript.&lt;br&gt;
You can check it out from here! [&lt;a href="https://lumina-three-omega.vercel.app/" rel="noopener noreferrer"&gt;https://lumina-three-omega.vercel.app/&lt;/a&gt;]&lt;/p&gt;

&lt;h2&gt;
  
  
  🎨 The Design Process
&lt;/h2&gt;

&lt;p&gt;My goal was to create a "wow" factor from the first load. I drew inspiration from modern "linear-style" designs and the glassmorphism trend.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Color Palette:&lt;/strong&gt; I used specific HSL values to ensure deep, harmonious dark tones combined with vibrant blue-to-purple gradients.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Glassmorphism:&lt;/strong&gt; Implementing a sense of depth was key. I used subtle &lt;code&gt;backdrop-filter&lt;/code&gt; effects and semi-transparent borders to make components feel like they are floating over the background.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Typography:&lt;/strong&gt; I chose &lt;strong&gt;Inter&lt;/strong&gt; for its incredible readability on digital screens, setting it with tight letter-spacing for that premium "Saas" look.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  💻 Code Snippets
&lt;/h2&gt;

&lt;p&gt;The core of the "glass" look is surprisingly simple but requires careful tuning:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
css
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
