Giter VIP home page Giter VIP logo

Comments (7)

ascaugusto avatar ascaugusto commented on May 13, 2024

If you remove theme- from the class name we can set default themes using a empty string on the createTheme object.
createThemes({
"": {
'primary': 'steelblue',
'secondary': 'darkblue',
'brand': '#F3F3F3',
},
dark: {
'primary': 'turquoise',
'secondary': 'tomato',
'brand': '#4A4A4A',
},
})
The first colors will be the default theme.

from tw-colors.

ascaugusto avatar ascaugusto commented on May 13, 2024

My particular problem is use the lib with storybook-tailwind-dark-mode. The light theme needs to apply by default (class="")

from tw-colors.

L-Blondy avatar L-Blondy commented on May 13, 2024

If you remove theme- from the class name we can set default themes using a empty string on the createTheme object. createThemes({ "": { 'primary': 'steelblue', 'secondary': 'darkblue', 'brand': '#F3F3F3', }, dark: { 'primary': 'turquoise', 'secondary': 'tomato', 'brand': '#4A4A4A', }, }) The first colors will be the default theme.

This wouldn't work

from tw-colors.

L-Blondy avatar L-Blondy commented on May 13, 2024

My particular problem is use the lib with storybook-tailwind-dark-mode. The light theme needs to apply by default (class="")

class="" would not work and even if it did it would break nested themes.

You can write a custom Storybook decorator and add the toggle button by yourself as mentionned here.

Or you can ask the storybook-tailwind-dark-mode maintainer to add an option to configure a className for the light mode

from tw-colors.

ascaugusto avatar ascaugusto commented on May 13, 2024

@L-Blondy How can I set one theme by default with tw-colors?

from tw-colors.

L-Blondy avatar L-Blondy commented on May 13, 2024

Simply apply the className of the theme on some DOM element. You can then toggle the dark theme lower in the DOM if it makes sense in your case (see the nested themes docs)

from tw-colors.

TomerBu avatar TomerBu commented on May 13, 2024

Thanks for the plugin! just what i was looking for.

Next Theme also uses a class="dark" or class="light" on the body,
Maybe you can add a configuration for the className?

I Agree it shouldn't be empty, but it makes sense to enable className configuration.

I Ended up with something like this in order to adapt the className to the plugin:

 <NextThemeProvider
      **value={{dark: 'theme-dark', light: 'theme-light'}}**
      attribute="class"
      defaultTheme="system"
      enableSystem
      {...props}
    >

from tw-colors.

Related Issues (20)

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.