@function capitalize($string) { @return to-upper-case(str-slice($string, 1, 1)) + str-slice($string, 2); }