profile-helper-theme
@include profile-helper-theme(
	$theme,
	$iconTheme,
  $progressColor
);Description
Control the theme, icon theme, and progress colour of the Profile Helper block.
Parameters
$theme (shades | color)
The base color to be used as theme.
Default: primary
$iconTheme (shades | color)
The base color of the badge icons.
Default: primary
$progressColor (shades | color)
The color of the progress indicator.
Default: $theme
Return
(CSS) Styles to apply to .profile-helper.
Examples
Use the primary-light shade to theme the profile helper
primary-light shade to theme the profile helper@include profile-helper-theme(primary-light);Use various colors to theme different aspects of the profile helper
@include profile-helper-theme(
  $theme: secondary,
  $iconTheme: secondary-light,
  $progressColor: primary
);Updated 5 months ago