@charset "UTF-8";
@include __const('NATIVE_FUNCTIONS', (
    'rgb', // $red, $green, $blue
    'rgba', // $red, $green, $blue, $alpha
    'red', // $color
    'green', // $color
    'blue', // $color
    'mix', // $color1, $color2, [$weight]
    'hsl', // $hue, $saturation, $lightness
    'hsla', // $hue, $saturation, $lightness, $alpha
    'hue', // $color
    'saturation', // $color
    'lightness', // $color
    'adjust-hue', // $color, $degrees
    'lighten', // $color, $amount
    'darken', // $color, $amount
    'saturate', // $color, $amount
    'desaturate', // $color, $amount
    'grayscale', // $color
    'complement', // $color
    'invert', // $color
    'alpha', // $color / opacity($color)
    'rgba', // $color, $alpha
    'opacify', // $color, $amount / fade-in($color, $amount)
    'transparentize', // $color, $amount / fade-out($color, $amount)
    'adjust-color', // $color, [$red], [$green], [$blue], [$hue], [$saturation], [$lightness], [$alpha]
    'scale-color', // $color, [$red], [$green], [$blue], [$saturation], [$lightness], [$alpha]
    'change-color', // $color, [$red], [$green], [$blue], [$hue], [$saturation], [$lightness], [$alpha]
    'ie-hex-str', // $color
    'unquote', // $string
    'quote', // $string
    'str-length', // $string
    'str-insert', // $string, $insert, $index
    'str-index', // $string, $substring
    'str-slice', // $string, $start-at, [$end-at]
    'to-upper-case', // $string
    'to-lower-case', // $string
    'percentage', // $number
    'round', // $number
    'ceil', // $number
    'floor', // $number
    'abs', // $number
    'min', // $numbers…
    'max', // $numbers…
    'random', // [$limit]
    'length', // $list
    'nth', // $list, $n
    'set-nth', // $list, $n, $value
    'join', // $list1, $list2, [$separator]
    'append', // $list1, $val, [$separator]
    'zip', // $lists…
    'index', // $list, $value
    'list-separator', // #list
    'map-get', // $map, $key
    'map-merge', // $map1, $map2
    'map-remove', // $map, $keys…
    'map-keys', // $map
    'map-values', // $map
    'map-has-key', // $map, $key
    'keywords', // $args
    'selector-nest', // $selectors…
    'selector-append', // $selectors…
    'selector-extend', // $selector, $extendee, $extender
    'selector-replace', // $selector, $original, $replacement
    'selector-unify', // $selector1, $selector2
    'is-superselector', // $super, $sub
    'simple-selectors', // $selector
    'selector-parse', // $selector
    'feature-exists', // $feature
    'variable-exists', // $name
    'global-variable-exists', // $name
    'function-exists', // $name
    'mixin-exists', // $name
    'inspect', // $value
    'type-of', // $value
    'unit', // $number
    'unitless', // $number
    'comparable', // $number1, $number2
    'call', // $name, $args…
    'if', // $condition, $if-true, $if-false
));
