🇯🇵 日本語 | 🇺🇸 English | 🇪🇸 Español | 🇵🇹 Português | 🇹🇭 ไทย | 🇨🇳 中文

CSS Color Management Template: Define Site-wide Theme Colors with :root

📝 Usage

This template demonstrates how to define color variables using CSS's `:root` and manage theme colors for the entire site.

📘 Explanation

The following code defines color variables in `:root`, allowing the same theme colors to be used across all pages. This makes it easier to manage theme colors and maintain consistent styling across the site.

🔹 Partial Code (Defining Color Variables)

/* Defining color variables in :root */
:root {
  --primary-color: #3498db; /* Primary color */
  --secondary-color: #2ecc71; /* Secondary color */
  --text-color: #333; /* Text color */
  --background-color: #f9f9f9; /* Background color */
}
  

💻 Complete Working Code (Theme Color Management)

<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Theme Color Management</title>
  <style>
    /* Defining color variables in :root */
    :root {
      --primary-color: #3498db; /* Primary color */
      --secondary-color: #2ecc71; /* Secondary color */
      --text-color: #333; /* Text color */
      --background-color: #f9f9f9; /* Background color */
    }

    /* Using color variables for background and text colors */
    body {
      background-color: var(--background-color);
      color: var(--text-color);
    }

    h1 {
      color: var(--primary-color);
    }

    a {
      color: var(--secondary-color);
    }
  </style>
</head>
<body>
  <h1>Theme Color Management Demo</h1>
  <p>This page demonstrates how theme colors can be centrally managed.</p>
  <a href="#">Link Text</a>
</body>
</html>
  

🧩 Practical Use of CSS Variables for Color Themes

CSS custom properties (variables) are extremely powerful when it comes to managing site-wide color themes. By using variables defined in :root, you can maintain design consistency while allowing for flexible customizations.

🔍 Benefits of CSS Variables

Main advantages of using color variables:

  • Centralized management of theme colors
  • Easy switching between dark mode and light mode
  • Perfect for implementing design tokens
  • Improved maintainability

💡 Practical Use Cases

Effective ways to use CSS variables:

・Use semantic variable names (e.g., --color-brand-primary instead of --primary)
・Create hierarchical variable definitions (base colors leading to derived colors)
・Add opacity variables (e.g., --opacity-hover: 0.8)

⚠️ Considerations and Best Practices

Points to keep in mind when using CSS variables:

1. Ensure consistent naming conventions for variables (e.g., BEM methodology)
2. Set fallback values when necessary (color: var(--primary, #3498db))
3. Be mindful of scoping your variables properly
4. Consider browser compatibility (older IE versions do not support CSS variables)

🛠 Advanced Techniques

Dynamic theme changes using JavaScript:

document.documentElement.style.setProperty('--primary-color', '#ff0000')
This allows for dynamically changing variable values via JavaScript, enabling features like user-customizable theme colors.

CSS variables are an essential technology for modern frontend development. When used properly, they allow you to create flexible and maintainable style sheets.

Copied!