Configuration
Defaults#
By default, the ccss package provides everything to get started. You don't
need to configure anything.
Live Editor
Result
Options#
You can re-configure CCSS instances, which means the default exported instance can be re-configured also.
Good to know
For more details and options see the documentation of transformed, the library CCSS is built on top.
applyUnit#
A function that will transform your number values to have your desired unit.
Default: v => `${v}px`
For example in case you want to use the
62.5% root font-size technique,
you can define your function as such: v => `${v / 10}rem`
outputTransformer#
It tells how transformed should transform your output.
There are 2 transformers provided by CCSS, but you can create your own:
stringOutputTransformer(default): output is a CSS string;objectOutputTransformer: output is a style object.