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