carto/lib/less/functions.js

100 lines
2.9 KiB
JavaScript

if (typeof(require) !== 'undefined') { var tree = require('less/tree') }
tree.functions = {
rgb: function (r, g, b) {
return this.rgba(r, g, b, 1.0);
},
rgba: function (r, g, b, a) {
var rgb = [r, g, b].map(function (c) { return number(c) }),
a = number(a);
return new(tree.Color)(rgb, a);
},
hsl: function (h, s, l) {
return this.hsla(h, s, l, 1.0);
},
hsla: function (h, s, l, a) {
h = (((number(h) % 360) + 360) % 360) / 360;
s = number(s); l = number(l); a = number(a);
//require('sys').puts(h, s, l)
var m2 = l <= 0.5 ? l * (s + 1) : l + s - l * s;
var m1 = l * 2 - m2;
return this.rgba(hue(h + 1/3) * 255,
hue(h) * 255,
hue(h - 1/3) * 255,
a);
function hue(h) {
h = h < 0 ? h + 1 : (h > 1 ? h - 1 : h);
if (h * 6 < 1) return m1 + (m2 - m1) * h * 6;
else if (h * 2 < 1) return m2;
else if (h * 3 < 2) return m1 + (m2 - m1) * (2/3 - h) * 6;
else return m1;
}
},
saturate: function (color, amount) {
var hsl = color.toHSL();
hsl.s += amount.value / 100;
hsl.s = clamp(hsl.s);
return this.hsl(hsl.h, hsl.s, hsl.l);
},
desaturate: function (color, amount) {
var hsl = color.toHSL();
hsl.s -= amount.value / 100;
hsl.s = clamp(hsl.s);
return this.hsl(hsl.h, hsl.s, hsl.l);
},
lighten: function (color, amount) {
var hsl = color.toHSL();
hsl.l *= (1 + amount.value / 100);
hsl.l = clamp(hsl.l);
return this.hsl(hsl.h, hsl.s, hsl.l);
},
darken: function (color, amount) {
var hsl = color.toHSL();
hsl.l *= (1 - amount.value / 100);
hsl.l = clamp(hsl.l);
return this.hsl(hsl.h, hsl.s, hsl.l);
},
greyscale: function (color, amount) {
return this.desaturate(color, new(tree.Dimension)(100));
},
e: function (str) {
return new(tree.Anonymous)(str);
},
'%': function (quoted /* arg, arg, ...*/) {
var args = Array.prototype.slice.call(arguments, 1),
str = quoted.content;
for (var i = 0; i < args.length; i++) {
str = str.replace(/%s/, args[i].content)
.replace(/%[da]/, args[i].toCSS());
}
str = str.replace(/%%/g, '%');
return new(tree.Quoted)('"' + str + '"', str);
}
};
function number(n) {
if (n instanceof tree.Dimension) {
return parseFloat(n.unit == '%' ? n.value / 100 : n.value);
} else if (typeof(n) === 'number') {
return n;
} else {
throw {
error: "RuntimeError",
message: "color functions take numbers as parameters"
};
}
}
function clamp(val) {
return Math.min(1, Math.max(0, val));
}