Dark Mode in Tailwind: A Step-by-Step Guide

By Maulik Paghdal

29 Jul, 2024

•   3 minutes to Read

Dark Mode in Tailwind: A Step-by-Step Guide

Introduction

Dark mode is no longer just a trend; it’s an essential feature for modern websites and applications. Tailwind CSS makes it incredibly simple to implement dark mode with its built-in utilities.

In this guide, we’ll walk you through enabling dark mode in Tailwind CSS, customizing it, and ensuring a smooth user experience.

Why Use Dark Mode?

  • Better Accessibility: Reduces eye strain in low-light environments.
  • Energy Efficiency: Saves battery life on OLED and AMOLED displays.
  • Aesthetic Appeal: Offers a sleek and modern look for your application.

Setting Up Tailwind CSS

1. Install Tailwind CSS

If you don’t already have Tailwind set up, start by installing it via npm:

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init

2. Configure Tailwind CSS

Update your tailwind.config.js file to enable dark mode:

module.exports = {
  darkMode: 'class', // or 'media'
  content: ['./src/**/*.{html,js}'], // Adjust the path based on your project
  theme: {
    extend: {},
  },
  plugins: [],
};

Dark Mode Strategies

  • Class-Based (**darkMode: 'class'**): Dark mode is toggled by adding a dark class to the root element.
  • Media-Based (**darkMode: 'media'**): Automatically applies dark mode based on the user's system settings.

Implementing Dark Mode

1. Add the Toggle Button

Use a simple button to switch between light and dark modes:

<button id="theme-toggle" class="p-2 bg-gray-200 dark:bg-gray-800 rounded">
  Toggle Dark Mode
</button>

2. JavaScript for Toggle Functionality

Add a script to handle the dark mode toggle:

const toggle = document.getElementById('theme-toggle');
const root = document.documentElement;

toggle.addEventListener('click', () => {
  if (root.classList.contains('dark')) {
    root.classList.remove('dark');
    localStorage.setItem('theme', 'light');
  } else {
    root.classList.add('dark');
    localStorage.setItem('theme', 'dark');
  }
});

// Apply theme on page load
if (localStorage.getItem('theme') === 'dark') {
  root.classList.add('dark');
}

Styling with Dark Mode

Example: Background and Text Colors

Use the dark: prefix to define dark mode styles:

<div class="bg-white text-black dark:bg-gray-900 dark:text-white p-4">
  <h1 class="text-xl">Welcome to Dark Mode</h1>
  <p>This is a dark mode example using Tailwind CSS.</p>
</div>

Example: Tailwind Utilities

Dark mode works seamlessly with all Tailwind utilities:

  • Border Colors:
    <div class="border border-gray-300 dark:border-gray-600"></div>
    
  • Hover States:
    <button class="hover:bg-gray-100 dark:hover:bg-gray-700">
      Hover Me
    </button>
    

Customizing Dark Mode

Extend the default theme in your tailwind.config.js:

module.exports = {
  theme: {
    extend: {
      colors: {
        dark: {
          bg: '#1e293b',
          text: '#f1f5f9',
          accent: '#64748b',
        },
      },
    },
  },
};

Now you can use custom colors:

<div class="bg-dark-bg text-dark-text dark:bg-dark-accent">
  Custom Dark Mode
</div>

Testing and Debugging

  1. Browser Developer Tools:
    • Use "Dark Mode Emulation" in Chrome or Edge DevTools.
  2. System Preferences:
    • Test with system-wide dark mode toggles on your operating system.
  3. Cross-Browser Testing:
    • Verify compatibility on different browsers.

Conclusion

Dark mode in Tailwind CSS is both powerful and straightforward to implement. With minimal setup, you can create a visually appealing and accessible experience for your users. Start experimenting with the examples in this guide, and take your design to the next level!

Explore more in the Tailwind CSS documentation.

Topics Covered