
Security News
pnpm 11.5 Adds Support for Recognizing npm Staged Publishes
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.
@daikin-oss/tailwind
Advanced tools
Tailwind plugin utilizing Daikin-specific styles
Install the tokens and plugin from npm:
npm install @daikin-oss/dds-tokens
npm install -D @daikin-oss/tailwind
Depending on your Tailwind version, you can set up the plugin in one of two ways:
Use the plugin in your tailwind config:
const daikinPlugin = require("@daikin-oss/tailwind");
module.exports = {
content: ["./src/**/*.js"],
theme: {},
variants: {
extend: {},
},
plugins: [daikinPlugin({}), ...otherPlugins],
};
Tailwind v4 no longer uses a JavaScript configuration file by default. Instead, you can enable plugins directly from your CSS entrypoint:
@import "tailwindcss";
@plugin '@daikin-oss/tailwind';
To use Daikin design tokens in your project, import the CSS variables:
import "@daikin-oss/dds-tokens/css/daikin/Light/variables.css";
See dds-tokens repository for more information.
You can use extended colors anywhere you usually would.
<button
class="bg-dds-color-common-brand-default hover:bg-dds-color-common-brand-hover"
>
My Button
</button>
For available colors, see Color / Reference and Color / Semantic Color pages in our design docs. We recommend using semantic colors to support themes in consistent way.
A daikinSerif fontFamily option has been added.
<h1 class="text-xl font-medium font-daikinSerif">Text</h1>
Note that the current default font is Roboto, so you would have to import that on your own.
npm run lint
npm run typecheck
npm run build
npm run test:attw
FAQs
Tailwind plugin using DDS design tokens
We found that @daikin-oss/tailwind demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.