
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
@netlify/netlify-design-tokens
Advanced tools
Netlify's design tokens for sharing across products and repos
Install the package in the project of your choice:
yarn add -D @netlify/netlify-design-tokens
From there, you may import any of the dist
files into your codebase for reuse as desired:
Basic usage:
@import '@netlify/netlify-design-tokens/dist/css/color.css';
.myComponent {
color: var(--color-teal-200);
}
Global dark mode support:
@import '@netlify/netlify-design-tokens/dist/css/color.css';
:root {
--colorTeal: var(--color-facets-teal-200);
}
@media (prefers-color-scheme: dark) {
:root {
--colorTeal: var(--color-facets-teal-500);
}
}
.myComponent {
color: var(--colorTeal);
}
Alternatively, use the rgb(<color> / <alpha>)
notation to vary color opacity:
@import '@netlify/netlify-design-tokens/dist/css/color.rgb.css';
:root {
--colorTeal: var(--color-rgb-facets-teal-200);
}
@media (prefers-color-scheme: dark) {
:root {
--colorTeal: var(--color-rgb-facets-teal-500);
}
}
.myComponent {
color: rgb(var(--colorTeal) / 50%);
}
import tokens from '@netlify/netlify-design-tokens';
const teal = tokens.color.facets.teal.500;
FAQs
Netlify's design tokens for sharing across products and repos
The npm package @netlify/netlify-design-tokens receives a total of 46,823 weekly downloads. As such, @netlify/netlify-design-tokens popularity was classified as popular.
We found that @netlify/netlify-design-tokens demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 16 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
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.