Skip to content

stylecow/stylecow-plugin-variables

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stylecow plugin variables

Build Status

Stylecow plugin to work with variables using the standard var(), available in CSS Custom Properties for Cascading Variables Module Level 1.

For global variables (available in all properties), you have to define them in the selectors :root or html. Use nested rules to create scoped variables.

:root {
    --mycolor: red;
}

.foo {
    color: var(--mycolor);
}

.foo h2 {
    --mycolor: blue;

    color: var(--mycolor);
    font-size: var(--mySize, 24px);
}

And stylecow converts to:

.foo {
    color: red;
}

.foo h2 {
    color: blue;
    font-size: 24px;
}

More demos in the tests folder

About

Stylecow plugin to work with variables using standard var() function

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published