
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@noaignite/tailwind-typography
Advanced tools
Tailwind CSS plugin for responsive typography.
@noaignite/tailwind-typography is available as an npm package.
// with pnpm
pnpm add @noaignite/tailwind-typography
// with yarn
yarn add @noaignite/tailwind-typography
// with npm
npm install @noaignite/tailwind-typography
Use typography() to define responsive typography variants and generate utility classes from your design tokens. The example below shows a basic setup with custom breakpoints, a class prefix, and fluid type scaling.
// tailwind.config.ts
import type { Config } from 'tailwindcss'
import { typography } from '@noaignite/tailwind-typography'
const config: Config = {
content: [
// ...
],
theme: {
// ...
},
plugins: [
typography({
breakpointKeys: ['xs', 'md', 'xl'] as const,
prefix: 'type-' as const,
unit: 'rem',
fluid: true,
variants: {
h1: {
xs: {
fontFamily: 'var(--font-primary)',
fontSize: 48,
fontWeight: 700,
lineHeight: 1.2,
textTransform: 'uppercase',
},
md: { fontSize: 72 },
},
body1: {
fontFamily: 'var(--font-secondary)',
fontSize: 14,
fontWeight: 400,
lineHeight: 1.2,
},
},
}),
],
}
export default config
This configuration makes type-h1, type-h1-xs, type-h1-md, and type-body1 available as utility classes.
Visit https://noaignite.dev/tailwind-typography to view the full documentation.
Read the contributing guide to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes.
The changelog is regularly updated to reflect what's changed in each new release.
This project is licensed under the terms of the MIT license.
FAQs
TailwindCSS plugin to create responsive typography
We found that @noaignite/tailwind-typography demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.