
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@beeq/tailwindcss
Advanced tools
BEEQ TailwindCSS is a preset that adds BEEQ's opinionated TailwindCSS configuration to your application.
Before starting to use BEEQ TailwindCSS, you need to have installed:
Make sure that Tailwind CSS directives are added to your main CSS file:
@tailwind base;
@tailwind components;
@tailwind utilities;
npm i -D @beeq/tailwindcss
const beeqPreset = require('@beeq/tailwindcss');
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
presets: [beeqPreset],
...
}
or with TypeScript:
import { default as beeqPreset } from '@beeq/tailwindcss';
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
presets: [beeqPreset],
...
}
The preset includes a CSS reset that removes all the default browser styles. If you want to use your own reset, you can add your own CSS reset code to the @base layer of TailwindCSS:
@tailwind base;
@layer base {
/* Your CSS reset code */
}
@tailwind components;
@tailwind utilities;
The preset does not include the fonts by default, but you can add them in your CSS entry file or use your own custom fonts:
/* BEEQ Outfit font */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;600;700&display=swap");
/* ENDAVA Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
The preset includes a typography plugin that adds a set of default typography styles to your application. It is not enabled by default, so you need to add it to your tailwind.config.js file:
const beeqPreset = require('@beeq/tailwindcss');
const { TYPOGRAPHY_DEFAULT } = require('@beeq/tailwindcss');
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
presets: [require('@beeq/tailwindcss')],
...
plugins: [
plugin(function ({ addBase }) {
// Use the default typography styles
addBase({ ...TYPOGRAPHY_DEFAULT });
}),
],
}
or via TypeScript:
import plugin from "tailwindcss/plugin";
import { default as beeqPreset, TYPOGRAPHY_DEFAULT } from "@beeq/tailwindcss";
import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
presets: [beeqPreset],
theme: {},
plugins: [
plugin(function ({ addBase }) {
// Use the default typography styles
addBase({ ...TYPOGRAPHY_DEFAULT });
}),
],
corePlugins: {
preflight: false,
},
} satisfies Config;
Note: you can always override this styles by adding your own CSS code to the
@baselayer of TailwindCSS.
Your can find more details about TailwindCSS presets in the official documentation.
FAQs
BEEQ's opinionated TailwindCSS configuration
The npm package @beeq/tailwindcss receives a total of 158 weekly downloads. As such, @beeq/tailwindcss popularity was classified as not popular.
We found that @beeq/tailwindcss 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.