• Reading time ~ 2 min
  • 12.02.2023

  🏎 Let's start

Update your Tailwind config to let it know need dark mode toggle based on class.

// tailwind.config.js
module.exports = {
  darkMode: 'class',
  // ...
}

This will let you write bg-gray-50 dark:bg-black and show background colours based on the current mode.

<html class="dark">
<body>
  <div class="bg-gray-100 dark:bg-gray-600">
    <!-- ... -->
  </div>
</body>
</html>

Now let's try to remove that hardcoded dark class in html tag and grab the value from localStorage using Alpine

<html
  x-data="{ darkMode: localStorage.getItem('dark') === 'true'} "
  x-init="$watch('darkMode', val => localStorage.setItem('dark', val))"
  x-bind:class="{ 'dark': darkMode }"
>
  πŸ€” Wait, what's going on here?
x-data="{ darkMode: localStorage.getItem('dark') === 'true' "

x-data tells the framework to initialize a new component with the following data object. In our case, the object is:

{ darkMode: localStorage.getItem('dark') === 'true'}

I think of it as a simple variable and setting darkMode's value to either true or false based on the localStorage item dark's value.

x-init="$watch('darkMode', val => localStorage.setItem('dark', val))"

$watch is a magic property (yup, that's the official terminology 😁) in Alpine used to watch data we have and trigger a function.

x-init You might have already guessed it. It runs an expression when a component is initialized.

So good so far? If not, let me know. I'll try to clarify in comments and update this post accordingly

Let's add the button to toggle the theme now.

<button @click="darkMode = !darkMode">
  Toggle Theme
</button>
  🏁 Yup, that's all you need 😎

Here is the polished version I used in HIGHSCORE.domains

toggle


This is my first time using AlpineJS and got featured in Alpine.js Weekly #61 by @hugo__df

highscore.domains got a darkmode toggled powered by Alpine and TailwindUI by @onerinas

Screenshot 2021-05-31 at 8.07.54 AM


Leaving few links here which might be useful if you want to try this out in your project:

TailwindCSS:

AlpineJS:

x-init

Runs an expression when a component is initialized.

https://github.com/alpinejs/alpine#x-init

x-data

Declares a new component scope.

https://github.com/alpinejs/alpine#x-data

x-bind

Sets the value of an attribute to the result of a JS expression.

https://github.com/alpinejs/alpine#x-bind

$watch

Will fire a provided callback when a component property you "watched" gets changed.

https://github.com/alpinejs/alpine#watch

Comments

No comments yet
Yurij Finiv

Yurij Finiv

Full stack

ABOUT

Professional Fullstack Developer with extensive experience in website and desktop application development. Proficient in a wide range of tools and technologies, including Bootstrap, Tailwind, HTML5, CSS3, PUG, JavaScript, Alpine.js, jQuery, PHP, MODX, and Node.js. Skilled in website development using Symfony, MODX, and Laravel. Experience: Contributed to the development and translation of MODX3 i...

About author CrazyBoy49z
WORK EXPERIENCE
Contact
Ukraine, Lutsk
+380979856297