
Product
Introducing .NET Support in Socket
Socket now supports .NET (Beta), bringing supply chain security and SBOM accuracy to NuGet and MSBuild-powered C# projects.
postcss-theme-variables
Advanced tools
A [postcss](http://postcss.org/) plugin to override variables specified in options. An unobtrusive way to create themes.
A postcss plugin to override variables specified in options. An unobtrusive way to create themes.
yarn add postcss postcss-theme-variables --dev
{
plugins: [require('postcss-theme-variables')(/* options */)]
}
# And in your postcss source files, use variables as you wish.
⚠️ Plugin orders are important in postcss, make sure this plugin comes after any import
related plugins(like postcss-easy-import
) and before any other plugins(like precss
).
postcss-easy-import
and precss
// PostCSS config
const themeVariables = require('postcss-theme-variables');
const easyImport = require('postcss-easy-import');
const precss = require('precss');
const vars = {
'padding-size': '10px'
};
postcss([
easyImport({ prefix: '_' }),
themeVariables({ vars, prefix: '$' }),
// Imports are inlined by postcss-easy-import so precss won't see them
precss()
])
.process(...);
/* _colors.css */
$padding-size: 5px;
/* in.css */
@import './_colors.css';
ul li {
padding: $padding-size;
}
/* out.css */
ul li {
padding: 10px;
}
precss
// PostCSS config
const themeVariables = require('postcss-theme-variables');
const precss = require('precss');
const vars = {
'padding-size': '10px'
};
postcss([
themeVariables({ vars, prefix: '$' }),
precss({
import: {
// This is required to process any variables inside dependencies
plugins: [themeVariables({ vars })]
}
})
])
.process(...);
/* in.css */
$padding-size: 5px;
ul li {
padding: $padding-size;
}
/* out.css */
ul li {
padding: 10px;
}
Option | Type | Description | Default Value | Required |
---|---|---|---|---|
vars | Object | Variables to override | {} | No |
prefix | string | Variable prefix, it's '$' if you use SCSS. You can omit prefix in vars map. | '' | No |
MIT license.
FAQs
A [postcss](http://postcss.org/) plugin to override variables specified in options. An unobtrusive way to create themes.
We found that postcss-theme-variables demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Product
Socket now supports .NET (Beta), bringing supply chain security and SBOM accuracy to NuGet and MSBuild-powered C# projects.
Research
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.