
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@aeries-design/adl-tailwind-config
Advanced tools
@aeries-design/adl-tailwind-configTailwind provides good installation instructions on how to get setup with their tools, which you can find here.
With imports from Tailwind CSS in place, you can leverage the ADL configuration like this:
// tailwind.config.js
module.exports = {
presets: [require('@aeries-design/adl-tailwind-config')],
};
In situations where you do not want to setup the build pipeline uses a command-line tool to build the css from source, a pre-built version of the ADL Tailwind css file is included in this package. NOTE This method will use the Tailwind CSS file in it's entirety and will not do any tree-shaking to purge unused classes.
For tools that allow you to include a pre-existing CSS file into your application, this package includes a pre-built version of the CSS file that you can import. For example, if you're using gridsome create $project-name, you could add the following to your src/index.js
import '@aeries-design/adl-tailwind-config/dist/adl-tailwind.css';
// or the minified version
import '@aeries-design/adl-tailwind-config/dist/adl-tailwind.min.css';
and the tailwind classes will be made available to you.
If you want to go even simpler, you can link against the pre-built CSS file on unpkg. Include the following in the head of your document.
<link
rel="stylesheet"
href="https://unpkg.com/@aeries-design/adl-tailwind-config/dist/adl-tailwind.min.css"
>
Note that with this approach you will always get the latest version of Tailwind CSS -- even if there was a major version bump. See the unpkg documentation if you want to link against a specific version of the package.
Regardless of which implementation method you choose to use, you also must link to the font definitions we use as part of the ADL.
include the following link in the head of your document, before any other CSS files.
<link
rel="preconnect"
href="https://fonts.gstatic.com"
>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;1,200;1,300;1,400;1,600;1,700;1,800&display=swap"
>
FAQs
Tailwind config for Aeries Design Language
We found that @aeries-design/adl-tailwind-config demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.