<html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> <title>LESS Default Variables</title> </head> <body> <h1>Welcome to Yiibai Yiibai</h1> <p>LESS is a CSS pre-processor that enables customizable, manageable and reusable style sheet for web site.</p> </body> </html>
@import "h/"; // first declaration of @color @color: green; // this will override @color defined previously p{ color : @color; }
@color: blue;
lessc style.less style.css
p { color: green; }