1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
|
---
layout: default
permalink: docs/bifs.html
---
# Built-in Functions
## red(color[, value])
Return the red component of the given `color`, or set the red component to the optional second `value` argument.
red(#c00)
// => 204
red(#000, 255)
// => #f00
## green(color[, value])
Return the green component of the given `color`, or set the green component to the optional second `value` argument.
green(#0c0)
// => 204
green(#000, 255)
// => #0f0
## blue(color[, value])
Return the blue component of the given `color`, or set the blue component to the optional second `value` argument.
blue(#00c)
// => 204
blue(#000, 255)
// => #00f
## alpha(color[, value])
Return the alpha component of the given `color`, or set the alpha component to the optional second `value` argument.
alpha(#fff)
// => 1
alpha(rgba(0,0,0,0.3))
// => 0.3
alpha(#fff, 0.5)
// => rgba(255,255,255,0.5)
## dark(color)
Check if `color` is dark:
dark(black)
// => true
dark(#005716)
// => true
dark(white)
// => false
## light(color)
Check if `color` is light:
light(black)
// => false
light(white)
// => true
light(#00FF40)
// => true
## hue(color[, value])
Return the hue of the given `color`, or set the hue component to the optional second `value` argument.
hue(hsla(50deg, 100%, 80%))
// => 50deg
hue(#00c, 90deg)
// => #6c0
## saturation(color[, value])
Return the saturation of the given `color`, or set the saturation component to the optional second `value` argument.
saturation(hsla(50deg, 100%, 80%))
// => 100%
saturation(#00c, 50%)
// => #339
## lightness(color[, value])
Return the lightness of the given `color`, or set the lightness component to the optional second `value` argument.
lightness(hsla(50deg, 100%, 80%))
// => 80%
lightness(#00c, 80%)
// => #99f
## push(expr, args...)
Push the given `args` to `expr`.
nums = 1 2
push(nums, 3, 4, 5)
nums
// => 1 2 3 4 5
Aliased as `append()`
## unshift(expr, args...)
Unshift the given `args` to `expr`.
nums = 4 5
unshift(nums, 3, 2, 1)
nums
// => 1 2 3 4 5
Aliased as `prepend()`
## keys(pairs)
Return keys in the given `pairs`:
pairs = (one 1) (two 2) (three 3)
keys(pairs)
// => one two three
## values(pairs)
Return values in the given `pairs`:
pairs = (one 1) (two 2) (three 3)
values(pairs)
// => 1 2 3
## list-separator(list)
Return the separator of the given `list`.
list1 = a b c
list-separator(list1)
// => ' '
list2 = a, b, c
list-separator(list2)
// => ','
## typeof(node)
Return type of `node` as a string.
type(12)
// => 'unit'
typeof(12)
// => 'unit'
typeof(#fff)
// => 'rgba'
type-of(#fff)
// => 'rgba'
Aliased as `type-of` and `type`.
## unit(unit[, type])
Return a string for the type of `unit` or an empty string,
or assign the given `type` without unit conversion.
unit(10)
// => ''
unit(15in)
// => 'in'
unit(15%, 'px')
// => 15px
unit(15%, px)
// => 15px
## match(pattern, string)
Test if `string` matches the given `pattern`.
match('^foo(bar)?', foo)
match('^foo(bar)?', foobar)
// => true
match('^foo(bar)?', 'foo')
match('^foo(bar)?', 'foobar')
// => true
match('^foo(bar)?', 'bar')
// => false
## abs(unit)
abs(-5px)
// => 5px
abs(5px)
// => 5px
## ceil(unit)
ceil(5.5in)
// => 6in
## floor(unit)
floor(5.6px)
// => 5px
## round(unit)
round(5.5px)
// => 6px
round(5.4px)
// => 5px
**Note:** All rounding functions can accept optional `precision` argument — you can pass the number of digits you want to save after the period:
ceil(5.52px,1)
// => 5.6px
floor(5.57px,1)
// => 5.5px
round(5.52px,1)
// => 5.5px
## sin(angle)
Returns the value of sine for the given `angle`. If the angle is given as a degree unit, like `45deg`, it is treated as a degree, otherwise it is treated as radians.
sin(30deg)
// => 0.5
sin(3*PI/4)
// => 0.707106781
## cos(angle)
Returns the value of cosine for the given `angle`. If the angle is given as a degree unit, like `45deg`, it is treated as a degree, otherwise it is treated as radians.
cos(180deg)
// => -1
## tan(angle)
Returns the value of tangent for the given `angle`. If the angle is given as a degree unit, like `45deg`, it is treated as a degree, otherwise it is treated as radians.
tan(45deg)
// => 1
tan(90deg)
// => Infinity
## min(a, b)
min(1, 5)
// => 1
## max(a, b)
max(1, 5)
// => 5
## even(unit)
even(6px)
// => true
## odd(unit)
odd(5mm)
// => true
## sum(nums)
sum(1 2 3)
// => 6
## avg(nums)
avg(1 2 3)
// => 2
## base-convert(num, base, width)
Returns a `Literal` `num` converted to the provided `base`, padded to `width` with zeroes (default width is 2)
base-convert(1, 10, 3)
// => 001
base-convert(14, 16, 1)
// => e
base-convert(42, 2)
// => 101010
## join(delim, vals...)
Join the given `vals` with `delim`.
join(' ', 1 2 3)
// => "1 2 3"
join(',', 1 2 3)
// => "1,2,3"
join(', ', foo bar baz)
// => "foo, bar, baz"
join(', ', foo, bar, baz)
// => "foo, bar, baz"
join(', ', 1 2, 3 4, 5 6)
// => "1 2, 3 4, 5 6"
## hsla(color | h,s,l,a)
Convert the given `color` to an `HSLA` node,
or h,s,l,a component values.
hslaa(10deg, 50%, 30%, 0.5)
// => HSLA
hslaa(#ffcc00)
// => HSLA
## hsla(color | h,s,l)
Convert the given `color` to an `HSLA` node,
or h,s,l component values.
hsla(10, 50, 30)
// => HSLA
hsla(#ffcc00)
// => HSLA
## rgba(color | r,g,b,a)
Return `RGBA` from the r,g,b,a channels or provide a `color` to tweak the alpha.
rgba(255,0,0,0.5)
// => rgba(255,0,0,0.5)
rgba(255,0,0,1)
// => #ff0000
rgba(#ffcc00, 0.5)
// rgba(255,204,0,0.5)
Alternatively stylus supports the `#rgba` and `#rrggbbaa` notations as well:
#fc08
// => rgba(255,204,0,0.5)
#ffcc00ee
// => rgba(255,204,0,0.9)
## rgb(color | r,g,b)
Return a `RGBA` from the r,g,b channels or cast to an `RGBA` node.
rgb(255,204,0)
// => #ffcc00
rgb(#fff)
// => #fff
## blend(top[, bottom])
Blends the given `top` color over the `bottom` one using the normal blending. The `bottom` argument is optional and is defaulted to `#fff`.
blend(rgba(#FFF, 0.5), #000)
// => #808080
blend(rgba(#FFDE00,.42), #19C261)
// => #7ace38
blend(rgba(lime, 0.5), rgba(red, 0.25))
// => rgba(128,128,0,0.625)
## lighten(color, amount)
Lighten the given `color` by `amount`. This function is
unit-sensitive, for example supporting percentages as shown
below.
lighten(#2c2c2c, 30)
// => #787878
lighten(#2c2c2c, 30%)
// => #393939
## darken(color, amount)
Darken the given `color` by `amount`.This function is
unit-sensitive, for example supporting percentages as shown
below.
darken(#D62828, 30)
// => #551010
darken(#D62828, 30%)
// => #961c1c
## desaturate(color, amount)
Desaturate the given `color` by `amount`.
desaturate(#f00, 40%)
// => #c33
## saturate(color, amount)
Saturate the given `color` by `amount`.
saturate(#c33, 40%)
// => #f00
## complement(color)
Gives the complementary color. Equals to spinning hue to 180deg.
complement(#fd0cc7)
// => #0cfd42
## invert(color)
Inverts the color. The red, green, and blue values are inverted, while the opacity is left alone.
invert(#d62828)
// => #29d7d7
## grayscale(color)
Gives the grayscale equivalent of the given color. Equals to desaturate by 100%.
grayscale(#fd0cc7)
// => #0cfd42
## tint(color, amount)
Mix the given color with white.
tint(#fd0cc7,66%)
// => #feaceb
## shade(color, amount)
Mix the given color with black.
shade(#fd0cc7,66%)
// => #560443
## luminosity(color)
Returns the [relative luminance](http://www.w3.org/TR/WCAG20/#relativeluminancedef) of the given `color`.
luminosity(white)
// => 1
luminosity(#000)
// => 0
luminosity(red)
// => 0.2126
## contrast(top[, bottom])
Returns the [contrast ratio](http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef) object between `top` and `bottom` colors, based on [script](https://github.com/LeaVerou/contrast-ratio/blob/gh-pages/color.js#L108) underlying “[contrast ratio](http://leaverou.github.io/contrast-ratio/)” tool by Lea Verou.
The second argument is optional and is defaulted to `#fff`.
The main key in the returned object is `ratio`, it also have `min` and `max` values that are different from the `ratio` only when the `bottom` color is transparent. In that case the `error` also contains an error margin.
contrast(#000, #fff).ratio
=> 21
contrast(#000, rgba(#FFF, 0.5))
=> { "ratio": "13.15;", "error": "-7.85", "min": "5.3", "max": "21" }
## transparentify(top[, bottom, alpha])
Returns the transparent version of the given `top` color, as if it was blend over the given `bottom` color (or the closest to it, if it is possible).
The second argument is optional and is defaulted to `#fff`.
The third argument is optional and overrides the autodetected alpha.
transparentify(#808080)
=> rgba(0,0,0,0.5)
transparentify(#414141, #000)
=> rgba(255,255,255,0.25)
transparentify(#91974C, #F34949, 0.5)
=> rgba(47,229,79,0.5)
## unquote(str | ident)
Unquote the given `str` and returned as a `Literal` node.
unquote("sans-serif")
// => sans-serif
unquote(sans-serif)
// => sans-serif
unquote('1px / 2px')
// => 1px / 2px
## convert(str)
Like `unquote()` but tries to convert the given `str` to a Stylus node.
unit = convert('40px')
typeof(unit)
// => 'unit'
color = convert('#fff')
typeof(color)
// => 'rgba'
foo = convert('foo')
tyepof(foo)
// => 'literal'
## s(fmt, ...)
The `s()` function is similar to `unquote()`, in that it returns
a `Literal` node, however it accepts a format string much like C's `sprintf()`. Currently the only specifier is `%s`.
s('bar()');
// => bar()
s('bar(%s)', 'baz');
// => bar("baz")
s('bar(%s)', baz);
// => bar(baz)
s('bar(%s)', 15px);
// => bar(15px)
s('rgba(%s, %s, %s, 0.5)', 255, 100, 50);
// => rgba(255, 100, 50, 0.5)
s('bar(%Z)', 15px);
// => bar(%Z)
s('bar(%s, %s)', 15px);
// => bar(15px, null)
Check out the `%` string operator for equivalent behaviour.
## `called-from` property
`called-from` property contains the list of the functions the current function was called from in the reverse order (the first item is the deepest function).
foo()
bar()
bar()
baz()
baz()
return called-from
foo()
// => bar foo
## current-media()
`current-media()` function returns the string of the current block's `@media` rule or `''` if there is no `@media` above the block.
@media only screen and (min-width: 1024px)
current-media()
// => '@media (only screen and (min-width: (1024px)))'
## +cache(keys...)
`+cache` is a really powerful built-in function that allows you to create your own “cachable” mixins.
“Cachable mixin” is the one, that would apply its contents to the given selector on the first call, but would `@extend` the first call's selector at the second call with the same params.
size($width, $height = $width)
+cache('w' + $width)
width: $width
+cache('h' + $height)
height: $height
.a
size: 10px 20px
.b
size: 10px 2em
.c
size: 1px 2em
Would yield to
.a,
.b {
width: 10px;
}
.a {
height: 20px;
}
.b,
.c {
height: 2em;
}
.c {
width: 1px;
}
See how the selectors are grouped together by the used property.
## +prefix-classes(prefix)
Stylus comes with a block mixin `prefix-classes` that can be used for prefixing the classes inside any given Stylus' block. For example:
+prefix-classes('foo-')
.bar
width: 10px
Yields:
.foo-bar {
width: 10px;
}
## define(name, expr)
Allows to create or overwrite a variable with a given name, passed as a string, onto current scope.
This bif can be useful on those cases in which you'd wish interpolation in variable names:
prefix = 'border'
border = { color: #000, length: 1px, style: solid }
for prop, val in border
define(prefix + '-' + prop, val)
body
border: border-length border-style border-color
yields:
body {
border: 1px solid #000;
}
## operate(op, left, right)
Perform the given `op` on the `left` and `right` operands:
op = '+'
operate(op, 15, 5)
// => 20
## length([expr])
Parenthesized expressions may act as tuples, the `length()` function returns the length of such expressions.
length((1 2 3 4))
// => 4
length((1 2))
// => 2
length((1))
// => 1
length(())
// => 0
length(1 2 3)
// => 3
length(1)
// => 1
length()
// => 0
## selector()
Returns the compiled current selector or `&` if called at root level.
.foo
selector()
// => '.foo'
.foo
&:hover
selector()
// '.foo:hover'
## warn(msg)
Warn with the given error `msg`, does not exit.
warn("oh noes!")
## error(msg)
Exits with the given error `msg`.
add(a, b)
unless a is a 'unit' and b is a 'unit'
error('add() expects units')
a + b
## last(expr)
Return the _last_ value in the given `expr`:
nums = 1 2 3
last(nums)
last(1 2 3)
// => 3
list = (one 1) (two 2) (three 3)
last(list)
// => (three 3)
## p(expr)
Inspect the given `expr`:
fonts = Arial, sans-serif
p('test')
p(123)
p((1 2 3))
p(fonts)
p(#fff)
p(rgba(0,0,0,0.2))
add(a, b)
a + b
p(add)
stdout:
inspect: "test"
inspect: 123
inspect: 1 2 3
inspect: Arial, sans-serif
inspect: #fff
inspect: rgba(0,0,0,0.2)
inspect: add(a, b)
## opposite-position(positions)
Return the opposites of the given `positions`.
opposite-position(right)
// => left
opposite-position(top left)
// => bottom right
opposite-position('top' 'left')
// => bottom right
## image-size(path)
Returns the `width` and `height` of the image found at `path`. Lookups are performed in the same manner as `@import`, altered by the `paths` setting.
width(img)
return image-size(img)[0]
height(img)
return image-size(img)[1]
image-size('tux.png')
// => 405px 250px
image-size('tux.png')[0] == width('tux.png')
// => true
## add-property(name, expr)
Adds property `name`, with the given `expr` to the closest block.
For example:
something()
add-property('bar', 1 2 3)
s('bar')
body
foo: something()
yields:
body {
bar: 1 2 3;
foo: bar;
}
Next the "magic" `current-property` local variable comes into play. This variable is automatically available to function bodies, and contains an expression with the current property's name, and value.
For example if we were to inspect this local variable using `p()`, we
get the following:
p(current-property)
// => "foo" (foo __CALL__ bar baz)
p(current-property[0])
// => "foo"
p(current-property[1])
// => foo __CALL__ bar baz
Using `current-property` we can take our example a bit further, and duplicate the property with new values, and a conditional to ensure the function is only used within a property value.
something(n)
if current-property
add-property(current-property[0], s('-webkit-something(%s)', n))
add-property(current-property[0], s('-moz-something(%s)', n))
s('something(%s)', n)
else
error('something() must be used within a property')
body {
foo: something(15px) bar;
}
yields:
body {
foo: -webkit-something(15px);
foo: -moz-something(15px);
foo: something(15px) bar;
}
If you noticed in the example above, `bar` is only present for the initial call, since we returned `something(15px)`, it remained in-place within the expression, however the others do not take the rest of the expression into account.
Our more robust solution below, defines a function named `replace()` which clones the expression to prevent mutation, replaces the string value of an expression with another, and returns the cloned expression. We then move on to replace `__CALL__` within the expressions, which represents the cyclic call to `something()`.
replace(expr, str, val)
expr = clone(expr)
for e, i in expr
if str == e
expr[i] = val
expr
something(n)
if current-property
val = current-property[1]
webkit = replace(val, '__CALL__', s('-webkit-something(%s)', n))
moz = replace(val, '__CALL__', s('-moz-something(%s)', n))
add-property(current-property[0], webkit)
add-property(current-property[0], moz)
s('something(%s)', n)
else
error('something() must be used within a property')
yields:
body {
foo: foo -webkit-something(5px) bar baz;
foo: foo -moz-something(5px) bar baz;
foo: foo something(5px) bar baz;
}
Our implementation is now fully transparent both in regards to the property it is called within, and the position of the call. This powerful concept aids in transparent vendor support for function calls, such as gradients.
## use(path)
You can use any given js-plugin at given `path` with `use()` function right inside your '.styl' files, like this:
use("plugins/add.js")
width add(10, 100)
// => width: 110
And the `add.js` plugin in this case looks this way:
var plugin = function(){
return function(style){
style.define('add', function(a, b) {
return a.operate('+', b);
});
};
};
module.exports = plugin;
If you'd like to return any Stylus objects like `RGBA`, `Ident` or `Unit`, you could use the provided Stylus nodes like this:
var plugin = function(){
return function(style){
var nodes = this.nodes;
style.define('something', function() {
return new nodes.Ident('foobar');
});
};
};
module.exports = plugin;
You can pass any options as an optional second argument, using the [hash object](hashes.html):
use("plugins/add.js", { foo: bar })
## Undefined Functions
Undefined functions will output as literals, so for example
we may call `rgba-stop(50%, #fff)` within our css, and it will
output as you would expect. We can use this within helpers as well.
In the example below we simply define the function `stop()` which
returns the literal `rgba-stop()` call.
stop(pos, rgba)
rgba-stop(pos, rgba)
stop(50%, orange)
// => rgba-stop(50%, #ffa500)
|