You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign 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.5-beta.0
to
1.0.0
+10
mod.mjs
import module from "./index.js";
const themePlugin = module.themePlugin;
const themeColors = module.themeColors;
const darkMode = module.darkMode;
exports.themePlugin = themePlugin;
exports.themeColors = themeColors;
exports.darkMode = darkMode;
export default plugin;
+1
-1

@@ -298,3 +298,3 @@ const themeColors = {

":root": {
"--tw-var-black": "0,0,0",
"--tw-var-black": "18,18,18",
"--tw-var-white": "255,255,255",

@@ -301,0 +301,0 @@ "--tw-var-slate-50": "248,250,252",

{
"name": "tailwindcss-dark-mode-plugin",
"version": "0.0.5-beta.0",
"version": "1.0.0",
"description": "Dark mode plugin for tailwind css",

@@ -8,7 +8,7 @@ "publishConfig": {

},
"repository": "https://github.com/haijie-x/tailwindcss-dark-mode-plugin.git",
"repository": "https://github.com/hai-x/tailwindcss-dark-mode-plugin.git",
"exports": {
".": {
"require": "./index.js",
"import": "./esmWrapper.mjs"
"import": "./mod.mjs"
}

@@ -18,5 +18,5 @@ },

"scripts": {
"release": "bumpp && npm publish"
"release": "npm publish"
},
"author": "haijie-x",
"author": "hai-x",
"license": "ISC",

@@ -23,0 +23,0 @@ "devDependencies": {

import module from "./index.js";
const themePlugin = module.themePlugin;
const themeColors = module.themeColors;
const darkMode = module.darkMode;
exports.themePlugin = themePlugin;
exports.themeColors = themeColors;
exports.darkMode = darkMode;
export default plugin;