
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@storefront-ui/typography
Advanced tools
Create your own typography palette that fits perfectly with the rest of design system.
Tailwind plugin that allows you to create fully customizable typography system. Ships with StorefrontUI typography by default.
Made with ❤️ by Alokai team and contributors.
In many projects the designers specify a standarized range of typography atoms. From headings, body texts to elements like labels - everything follows the same palette of font styles. And whilst Tailwind is great when it comes to dealing with atomic styling we believe that having typography-related classes structured leads to a better developer experience. 💚
That's why we introduce you SF Typography
plugin - to bring typography systems back to the Tailwind world!
npm install --save-dev @storefront-ui/typography
// tailwind.config.ts
import sfTypography from '@storefront-ui/typography';
export default {
content: ['your-components-source-directory/*.ts'],
plugins: [sfTypography]
};
And get ready to use default StorefrontUI typography classes that are based on SFUI designs.
Every class defined within Tailwind theme configuration can be used in your template with a typography-
prefix. You could use default classes as follows:
<h2 class="typography-headline-3">Specifications</h2>
<h3 class="typography-headline-2">Fabric Content</h3>
<p class="typography-text-lg">Cotton blend</p>
<h3 class="typography-headline-2">Sleeve Length Style</h3>
<p class="typography-text-lg">Short sleeve</p>
Typography-related styling can be customized as a part of Tailwind theme customization:
// tailwind.config.ts
import sfTypography from '@storefront-ui/typography';
export default {
content: ['your-components-source-directory/*.ts'],
plugins: [sfTypography],
theme: {
extend: {
sfTypography: ({ theme }) => ({
'headline-2': {
fontSize: theme('fontSize.4xl'),
lineHeight: '1.1',
},
'headline-8': {
fontSize: theme('fontSize.xs'),
lineHeight: theme('lineHeight.4'),
fontWeight: theme('fontWeight.light')
},
})
}
}
};
You can also specify your own, fully custom typography palette:
// tailwind.config.ts
import sfTypography from '@storefront-ui/typography';
export default {
content: ['your-components-source-directory/*.ts'],
plugins: [sfTypography],
theme: {
sfTypography: ({ theme }) => ({
'heading': {
fontSize: theme('fontSize.4xl'),
lineHeight: '1.1',
},
'label': {
fontSize: theme('fontSize.xs'),
lineHeight: theme('lineHeight.4'),
fontWeight: theme('fontWeight.light')
},
})
}
};
With configuration above, you can start using typography-heading
and typography-label
classes right away!
You can change the default prefix typography-
by passing configuration options when initializing the plugin:
// tailwind.config.ts
import sfTypography from '@storefront-ui/typography';
export default {
content: ['your-components-source-directory/*.ts'],
plugins: [sfTypography({ utilityPrefix: 'custom-text' })]
};
After this change, we can use custom-text-
as a className prefix:
<h2 class="custom-text-headline-3">Specifications</h2>
<h3 class="custom-text-headline-2">Fabric Content</h3>
<p class="custom-text-text-lg">Cotton blend</p>
Make sure to check out StorefrontUI! Read the documentation at https://docs.storefrontui.io/v2/ 🚀
FAQs
SFUI typography plugin for Tailwind
We found that @storefront-ui/typography demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.