forge42dev / Remix-Dev-Tools

10x your development speed with devtools for Remix / react router
https://remix-development-tools.fly.dev/
MIT License
725 stars 35 forks source link

Text color in hydration diff view is the same as background #143

Open olhapi opened 2 months ago

olhapi commented 2 months ago

image

Just installed the plugin after initializing new remix app and see this.

AlemTuzlak commented 1 month ago

@olhapi hmm I guess this is an issue with a clashing tailwind config, can you send me yours so I can pinpoint the root cause ?

AlemTuzlak commented 1 month ago

Can you try with the latest version (4.5.1) ?

olhapi commented 1 month ago

Just installed latest version and it looks the same. My whole config is pretty much the default, I've installed remix and started playing with it just recently.

image

So my tailwind.css looks like this:

@tailwind base;
@tailwind components;
@tailwind utilities;

tailwind config

import type { Config } from "tailwindcss";

export default {
  content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
  theme: {
    extend: {},
  },
  plugins: [],
} satisfies Config;