Giter Site home page Giter Site logo

dnestorefrontdarkmode's Introduction

Dark Mode for Shopware 6 Storefront

This plugin for Shopware 6 adds a dark mode with auto-detection and/or toggle to the storefront.

The plugin offers the following features:

  • Compatible with all themes
  • Threshold for colors to be altered by saturation
  • Set a minimum level of lightness for reduced contrast
  • Tint grayscale for warmer/colder appearance
  • Exclude colors from being inverted
  • Auto-detect preferred color scheme
  • Toggle between light and dark mode within storefront

Requirements

  • 2.0.0
    • Shopware >= 6.5.0
  • 1.0.0
    • Shopware >= 6.4.18

Development

Using immutable colors

By declaring CSS variables using the suffix -immutable, color values may be stored that are supposed to be immutable, disregarding whether dark or light mode is used.

:root { 
    --white-immutable: #fff; 
}

body {
    background-color: var(--white-immutable);
}

In this example --white-immutable will be #fff in both light and dark mode.

Custom rules for dark mode

If you want to introduce rules specifically for the dark mode, you may use the [data-theme="dark"] selector on the root element.

:root[data-theme="dark"] {
    h1 {
        background: none;
    }
}

Customize dark/light mode toggle

By default, the button for the dark/light toggle will be shown in the top bar of the storefront. You may want to place it at some other place in the storefront layout.

  • To hide the original toggle button go to the configuration of the plugin in the administration and enable “Hide switch for dark mode in storefront”.
  • Use the following element where you want to place the toggle button instead.
<button class="btn dne-storefront-dark-mode-btn"
        type="button"
        aria-label="Dark/Light Mode"
        data-dne-storefront-dark-mode-toggle="true"
        data-dne-storefront-dark-mode-detection-disabled="{{ config('DneStorefrontDarkMode.config.deactivateAutoDetect') }}">
    {% sw_icon 'moon' style {'size': 'xs', 'class': 'theme-dark'} %}
    {% sw_icon 'sun' style {'size': 'xs', 'class': 'theme-light'} %}
</button>
  • If you prefer text to the icons you can use the classes icon-theme-light and icon-theme-dark for the content of the button respectively.
<span class="icon-theme-light">light theme</span>
<span class="icon-theme-dark">dark theme</span>

Screenshots

DarkMode

DarkMode

DarkMode

DarkMode

dnestorefrontdarkmode's People

Contributors

dneustadt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

paulholleis

dnestorefrontdarkmode's Issues

[data-theme="dark"] selector usage

Hello, I try to use these selectors, but can't make them appear in compiled CSS:

`:root[data-theme="dark"] {
img.cms-image {
filter: invert(100%) sepia(5%) saturate(0%) hue-rotate(226deg) brightness(119%) contrast(100%);
}
}

html[data-theme="dark"] {
h3 {
color: #fff;
}
}`

Shopware, 6.5.4.1
Dark Mode Storefront, 2.0.0
Custom JavaScript/CSS Manager for Shopware 6, 3.0.0

Stopped working after update to Shopware 6.6.1

Thanks for the great plugin!
It worked very well on Shopware 6.5 but when I updated to 6.6 nothing happens when clicking on the sun/moon icon.
It still reads the stored mode from local storage.

It worked for me when I slightly changed the code that initialised the plugin, see the PR (#3) since the current version failed as it didn't find the "OffcanvasMenu" plugin.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.