DEV Community

sakethk
sakethk

Posted on

3

Building multiple themes with CSS..

This article is about building a site with multiple color schemes. It will change the theme without reloading the document, without adding theme class names dynamically and without duplicating the code.

I am using CSS variables in this example. You can try this even if you are using SASS or LESS.

In this example we will create a document that has background color, Dropdown (to pick scheme) , card, heading and paragraph. Here I am creating six color schemes and have given random names to them. Below are the names

  • Light
  • Dark
  • Sunset
  • Moon light
  • Cartoon
  • bluecrystal

In dropdown you will find the system option i.e., your OS theme. If your are using Dark mode in your OS, it will be Dark. Else, it will be Light.

For each scheme i defined four colors

  • --main-bg-color (Body backgound color)
  • --card-shadow-color (Card shadow)
  • --primary-text-color (Heading text color)
  • --secondry-text-color (Paragraph text color)

Important

  • We are getting system theme with the help of prefers-color-scheme media query.
  • I am using data-theme attribute to set color scheme. Whenever scheme changes just we need to update data-theme attribute value.

Here is the Codepen. You can find color schemes and some other styles for Card, Heading and Paragraph in CSS section.

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs