jjranalli / nightwind

An automatic, customisable, overridable Tailwind dark mode plugin
https://nightwindcss.com
MIT License
713 stars 45 forks source link

Certain Classes not changing (Border-R-COLOR) #55

Open matthiscock opened 2 years ago

matthiscock commented 2 years ago

Hi

I have Nightwind running well, hover it doesnt appear to auto change sub options.

For example

bg-white - changes as per expectations (and over ride using the config below to grey 900)

However the classes border-r-gray-200 I would expect to change to border-r-gray-800 - however that do not. Could you point me in the right direction.

(I added the transition classes in as an experiment. Had no effect)

`` nightwind: {

            typography: true,
            transitionClasses: ["bg", "ring", 'text', 'bg', 'border', 'border-r', 'border-t', 'border-b', 'border-l'],

            colors: {
              white: "gray.900",
              black: "gray.50",
              gray: {
                200: "gray.800",

              },
            },
          },

``