16 lines
215 B
Plaintext
16 lines
215 B
Plaintext
|
-- in --
|
||
|
package test
|
||
|
|
||
|
css ClassName() {
|
||
|
background-color : #ffffff ;
|
||
|
color : { constants.White };
|
||
|
}
|
||
|
|
||
|
-- out --
|
||
|
package test
|
||
|
|
||
|
css ClassName() {
|
||
|
background-color: #ffffff;
|
||
|
color: { constants.White };
|
||
|
}
|