Skip to content

A preprocessor for css built on scala (Coming soon)

Notifications You must be signed in to change notification settings

tjkSec/wave-lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Wave is an upcoming css preprocessor that mimics es6 in syntax, here is an example of variables...

let backgroundColour = #292D3E;
let textColour = #eeeeee;
let myFont = 'Somatic', sans-serif;

.title-wrapper {
    font-family: myFont;
    color: textColour;
    background: backgroundColour;
}

would compile into...

/* ~ Wave Variable ~ */
/* ~ Wave Variable ~ */
/* ~ Wave Variable ~ */

.title-wrapper {
    font-family: 'Somatic', sans-serif;
    color: #eeeeee;
    background: #292D3E;
}

About

A preprocessor for css built on scala (Coming soon)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published