Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@clds/blender
Advanced tools
This is Cloudinary Design System color blending tool.
In Cloudinary Design System, we explicitly define styles of any surface. A surface consists of background color, foreground color, and typography type.
If you implement some design, and you can't decide which defined surface style to use, probably we have design issue where not allowed mix of foreground, background and typography was used.
This tool allows you to generate valid colors and typography for all existing derived states for all design system components.
Base colors come from palette (primary, secondary, surface, ...) but we allow to mix them using special restricting rules.
Input parameters you can put into the blender:
error
, warning
, primary
...)contrastHigh
foregroundsurface
background, solid foreground (same as variant)surface
background, contrastHigh
foregroundcontrastInvert
foreground (contrasting to solid background)sm
- ie. for button it is used for hover statesmd
- ie. for button it is used usually for normal stateslg
- ie. for button it is used usually for selected statesxl
- ie. for button it is used usually for hover+selected statesOutput parameters you get from the blender:
Single component's surface should be build using only methods from blender.
In case of plain backgrounds (plainSolid
, plainContrast
) we shouldn't use them to create layers inside component.
This means specifically, that we can't create two overlaying div elements with plain background to achieve new surface.
However, two independent components could be used in the way, where plain surface of one component overlays the other one.
For example: subtle alert (surfaceSolid, sm) can consist of plain button in hover state (plainSolid, sm), creating new surface
which is not achievable from blender.
Styled component mixin you can use for background colors in your blender-supporting component.
Styled component mixin you can use for foreground colors in your blender-supporting component.
function that returns you proper typography type for your state.
Easiest way to consume blender is to create styled components and use getBlenderTypographyType together with <Typography/>
component:
import {
blenderBackground,
blenderForeground,
getBlenderTypographyType,
} from '@clds/blender';
// other imports
const Root = styled.div`
background-color: ${blenderBackground};
`;
const Icon = styled.svg`
fill: ${blenderForeground};
`;
const Example = (props) => (
<Root {...props}>
<Icon {...props} path="..." />
<Typography
as="span"
size="sm"
type={getBlenderTypographyType(props.mode, props.variant)}
>
This is just the demo
</Typography>
</Root>
);
Example.defaultProps = {
variant: 'error',
mode: 'plainSolid',
intensity: 'lg',
};
This an accompanying solution that allows to communicate about blender surface through CSS variables.
Creates a styled mixin that will provide all necessary blender variables based on blender props passed as an argument.
Styled mixin that reads blender background from CSS variable
Styled mixin that reads blender foreground from CSS variable
Creates styled mixin that, for specific typography size, defines all typography-related properties from CSS variables.
This is an example of creating a surface that establishes blender css variables based on pseudo selectors.
import styled from 'styled-components';
import { blenderCss } from '@clds/blender';
const Button = styled.button`
${blenderCss.populateVariables({
mode: 'plainContrast',
variant: 'primary',
intensity: 'md',
})};
&:hover,
&:focus-visible {
${blenderCss.populateVariables({
mode: 'solidContrast',
variant: 'primary',
intensity: 'lg',
})};
}
&:active {
${blenderCss.populateVariables({
mode: 'solidContrast',
variant: 'primary',
intensity: 'xl',
})};
}
background-color: ${blenderCss.backgroundFromCssVariables};
border: 1px solid ${blenderCss.borderColorFromCssVariables};
`;
const LogoIcon = styled.div`
background: ${blenderCss.foregroundFromCssVariables};
`;
const Text = styled.p`
${blenderCss.typographyFromCssVariables('xs')};
`;
export const Example = () => (
<Button>
<LogoIcon />
<Text>Hello</Text>
</Button>
);
This library follows Semantic Versioning.
See LICENSE
FAQs
Utility to blend design system colors
The npm package @clds/blender receives a total of 95 weekly downloads. As such, @clds/blender popularity was classified as not popular.
We found that @clds/blender demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.