UNPKG

kss

Version:

The Node.js port of KSS: A methodology for documenting CSS and building style guides

13 lines (12 loc) 266 B
// .colors(@bg, @color) // // Applies foreground and background colors. // // @bg = #f5f5f5 - Background color. // @color = #900 - Foreground color. // // Style guide: demo.mixins.example .example (@bg: #f5f5f5, @color: #900) { background: @bg; color: @color; }