postcss-color-functional-notation
Version:
Use space and slash separated color notation in CSS
15 lines (11 loc) • 460 B
TypeScript
import type { PluginCreator } from 'postcss';
/** postcss-color-functional-notation plugin options */
export declare type pluginOptions = {
/** Preserve the original notation. default: false */
preserve?: boolean;
/** Enable "@csstools/postcss-progressive-custom-properties". default: true */
enableProgressiveCustomProperties?: boolean;
};
declare const postcssPlugin: PluginCreator<pluginOptions>;
export default postcssPlugin;
export { }