All Projects → KittyGiraudel → SassyCast

KittyGiraudel / SassyCast

Licence: MIT license
[UNMAINTAINED] Type conversion functions for Sass.

Programming Languages

SCSS
7915 projects
ruby
36898 projects - #4 most used programming language
javascript
184084 projects - #8 most used programming language

SassyCast

SassyCast is a simple API for type conversion in Sass.

Installation

gem install SassyCast
bower install sassy-cast

Notes

SassCast has a strict mode in which it will throw errors when failing to cast values (most notably to colors and numbers). You can enable strict-mode with:

$sc-strict-mode: true;

In non-strict mode, when a value cannot be converted to a number, SassyCast will warn and return 0. You can change this value with:

$sc-non-strict-default-number: 0;

In non-strict mode, when a value cannot be converted to a color, SassyCast will warn and return transparent. You can change this value with:

$sc-non-strict-default-color: transparent;

Note that color formats are sometimes converted automatically by Sass depending on the type of syntaxe used (compressed, expanded, etc.). When casting a color to string, the resulting string can be different from the color input.

Credits

Huge thanks to Marc Mintel for his help.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].