@csstools/postcss-color-mix-variadic-function-arguments
Version:
Mix any number of colors with the color-mix function in CSS
20 lines (16 loc) • 638 B
TypeScript
import type { PluginCreator } from 'postcss';
/** color-mix-variadic-function-arguments plugin options */
export declare type pluginOptions = {
/** Preserve the original notation. default: false */
preserve?: boolean;
/** Enable "@csstools/postcss-progressive-custom-properties". default: true */
enableProgressiveCustomProperties?: boolean;
/** Toggle sub features. default: { displayP3: true } */
subFeatures?: {
/** Enable displayP3 fallbacks. default: true */
displayP3?: boolean;
};
};
declare const postcssPlugin: PluginCreator<pluginOptions>;
export default postcssPlugin;
export { }