csstss
v0.1.0
Published
A CSS to TSS (Titanium Style Sheet) compiler.
Downloads
2
Readme
CSSTSS
A CSS to TSS (Titanium Style Sheet) compiler.
Usage
Example
compile = require "csstss"
tss = compile "Label, Button { font-family: Arial; }"
Output
"Label": {
"font": {
"fontFamily": "Arial"
}
}
"Button": {
"font": {
"fontFamily": "Arial"
}
}