Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@twilio-paste/color-contrast-utils
Advanced tools
Shared utilities for checking color contrast in Paste
Design Tokens provides a number of utility methods that you can use to determine the accessibility of a given theme of Design Tokens.
Here, as an example, you can inspect the current theme of the application you are in by grabbing the theme context, converting it to Design Tokens and passing it through the utils.
import {generateTokensFromTheme, useTheme} from '@twilio-paste/core/theme';
import {
getContrastRatingsOfTokensWithTextContrastRequirements,
getContrastRatingsOfTokensWithUIControlContrastRequirements,
getNumberOfTextFailures,
getNumberOfUIControlFailures,
} from '@twilio-paste/design-tokens/dist/contrast-rating/utils';
const SomewhereInYourApp = () => {
const theme = useTheme();
const designTokens = generateTokensFromTheme(theme);
const textContrastRating = getContrastRatingsOfTokensWithTextContrastRequirements(designTokens);
const uiControlContrastRating = getContrastRatingsOfTokensWithUIControlContrastRequirements(designTokens);
const numberOfTextFailures = getNumberOfTextFailures(textContrastRating);
const numberOfUIControlFailures = getNumberOfUIControlFailures(uiControlContrastRating);
return <div />;
};
When used as a child of the Paste Theme or Customization provider, these utilities will enable you to rate each foreground / background design token pairing for it's accessibility.
import {CustomizationProvider} from '@twilio-paste/core/customization';
const App = () => {
return (
<CustomizationProvider theme={{}}>
<SomewhereInYourApp />
</CustomizationProvider>
);
};
FAQs
Shared utilities for checking color contrast in Paste
The npm package @twilio-paste/color-contrast-utils receives a total of 9,442 weekly downloads. As such, @twilio-paste/color-contrast-utils popularity was classified as popular.
We found that @twilio-paste/color-contrast-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.