Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

tailwindcss-dark-mode-plugin

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tailwindcss-dark-mode-plugin - npm Package Compare versions

Comparing version
0.0.4
to
0.0.5-beta.0
+1
-1
package.json
{
"name": "tailwindcss-dark-mode-plugin",
"version": "0.0.4",
"version": "0.0.5-beta.0",
"description": "Dark mode plugin for tailwind css",

@@ -5,0 +5,0 @@ "publishConfig": {

@@ -36,1 +36,16 @@ # tailwindcss-dark-mode-plugin

2. It depend on tailwindcss, all tailwindcss built-in colors have been rewritten.
3. Dark mode is out of the box as long as you use tailwindcss built-in colors.
You don't need to write class like `dark:bg-black`.
# Recommendation
1. You can configure css styles to whole document like, let it more out of the
box
```css
@layer base {
body {
@apply text-neutral-700;
}
}
```