Skip to content

Latest commit

 

History

History
executable file
·
27 lines (22 loc) · 519 Bytes

README.md

File metadata and controls

executable file
·
27 lines (22 loc) · 519 Bytes

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;
}