<?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: goufafa khobna</title>
    <description>The latest articles on DEV Community by goufafa khobna (@goufafa_khobna_ae4d74f319).</description>
    <link>https://dev.to/goufafa_khobna_ae4d74f319</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4012638%2F8af154ac-0fc7-48e8-a770-f7220d77fc77.png</url>
      <title>DEV Community: goufafa khobna</title>
      <link>https://dev.to/goufafa_khobna_ae4d74f319</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/goufafa_khobna_ae4d74f319"/>
    <language>en</language>
    <item>
      <title>How I designed a Premium Dark Mode Hotel PMS Dashboard (HTML/CSS)</title>
      <dc:creator>goufafa khobna</dc:creator>
      <pubDate>Thu, 02 Jul 2026 18:24:28 +0000</pubDate>
      <link>https://dev.to/goufafa_khobna_ae4d74f319/how-i-designed-a-premium-dark-mode-hotel-pms-dashboard-htmlcss-421h</link>
      <guid>https://dev.to/goufafa_khobna_ae4d74f319/how-i-designed-a-premium-dark-mode-hotel-pms-dashboard-htmlcss-421h</guid>
      <description>&lt;p&gt;When looking for a Property Management System (PMS) dashboard for a hotel project, I noticed most existing solutions look like they were built in 1998.&lt;/p&gt;

&lt;p&gt;I decided to code a modern, premium dashboard from scratch using pure HTML and vanilla CSS. I focused on two main design trends: Dark Mode and Glassmorphism.&lt;/p&gt;

&lt;p&gt;Here is a breakdown of how I approached the design, along with some CSS snippets you can use in your own projects.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The Dark Mode Color Palette
Instead of using pure black (#000000), I used a deep slate blue for the background. This reduces eye strain for hotel staff working night shifts and feels much more premium.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;`css&lt;/p&gt;

&lt;p&gt;:root {&lt;br&gt;
  --bg-dark: #0f172a; /* Deep slate &lt;em&gt;/&lt;br&gt;
  --surface-dark: #1e293b; /&lt;/em&gt; Slightly lighter surface &lt;em&gt;/&lt;br&gt;
  --accent-gold: #facc15; /&lt;/em&gt; Premium gold for CTAs */&lt;br&gt;
  --text-main: #f8fafc;&lt;br&gt;
}&lt;br&gt;
body {&lt;br&gt;
  background-color: var(--bg-dark);&lt;br&gt;
  color: var(--text-main);&lt;br&gt;
}`&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The Glassmorphism Effect
For the statistics cards (like Revenue and Occupancy Rate), I used a subtle glass effect to make them pop off the dark background without looking flat.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;`css&lt;/p&gt;

&lt;p&gt;.stat-card {&lt;br&gt;
  background: rgba(30, 41, 59, 0.7);&lt;br&gt;
  backdrop-filter: blur(12px);&lt;br&gt;
  -webkit-backdrop-filter: blur(12px);&lt;br&gt;
  border: 1px solid rgba(255, 255, 255, 0.08);&lt;br&gt;
  border-radius: 16px;&lt;br&gt;
  padding: 24px;&lt;br&gt;
  transition: transform 0.3s ease;&lt;br&gt;
}&lt;br&gt;
.stat-card:hover {&lt;br&gt;
  transform: translateY(-5px);&lt;br&gt;
}`&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The Result
By combining these modern design tokens with a clean CSS Grid layout, the dashboard feels incredibly sleek. It tracks live bookings, room statuses, and RevPAR seamlessly.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Want the full code?&lt;br&gt;
If you are a developer, agency, or freelancer building a SaaS or a booking system, you don't have to start from scratch.&lt;/p&gt;

&lt;p&gt;I've packaged the complete, fully responsive HTML/CSS template. You can see the design and grab the source code here to save yourself 20 hours of coding:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://c8ke.com/lenomade" rel="noopener noreferrer"&gt;👉 Download the Lumina PMS Template&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy coding! Let me know if you have any questions about the CSS architecture in the comments.&lt;/p&gt;

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