
xCss is simply standard Cascading Style Sheets (CSS) markup, with some extra capabilities added in. Within your standard CSS file, you can add xCss markup to enhance and dynamically adjust the content of your CSS file. This lets you change colors, fonts, border attributes, and more after your website has been built and uploaded to the webserver.
xCss offers three types of markup constructions;
$param color bgColor1 red
p {
background-color: $bgColor1;
}
li {
color: $bgColor1;
}
$param color bgColor1 red
p {
background-color: bgColor1;
}
In addition to these, here are a number of future capabilities planned as well.
xCss generates standard CSS, and is therefore usable on any website, anywhere. However, xCss is most valuable in projects & environments that use "skins" or "themes" to style websites.
Using xCss, a "theme" developer can create a full skin design, and then the user can easily vary things such as;
/////{ and } grouping