Skip to content

Importing tw-elements-react.min.css overwrites theme.extend.colors #161

@leebenson

Description

@leebenson

Describe the bug

After following the setup instructions for a NextJS project, including this line:

import "tw-elements-react/dist/css/tw-elements-react.min.css";

... seems to overwrite custom color classes in tailwind.config.css set in the theme.extend.colors section.

To Reproduce

Using this tailwind.config.ts:

import type { Config } from "tailwindcss";

const config: Config = {
  content: [
    "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
    "./node_modules/tw-elements-react/dist/js/**/*.js",
  ],
  theme: {
    extend: {
      colors: {
        honeydew: "#f1faee",
      }
    },
  },
  corePlugins: {
    preflight: false,
  },
  plugins: [require("tw-elements-react/dist/plugin.cjs")],
};

export default config;

... And then use the color in any component:

<div className="bg-honeydew">This should be Honeydew but it isn't!</div>

Expected behavior

The resulting CSS should contain the extended theme colour class names.

Actual behavior

The class names don't exist in the resulting CSS and therefore styles aren't applied.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions