/** * @class Global_CSS */ /** * @var {color} $color * The default text color to be used throughout the theme. */ $color: dynamic(#000); /** * @var {string} $font-family * The default font-family to be used throughout the theme. */ $font-family: dynamic(helvetica, arial, verdana, sans-serif); /** * @var {number} $font-size * The default font-size to be used throughout the theme. */ $font-size: dynamic(13px); /** * @var {string/number} * The default font-weight to be used throughout the theme. */ $font-weight: dynamic(normal); /** * @var {string/number} * The default font-weight for bold font to be used throughout the theme. */ $font-weight-bold: dynamic(bold); /** * @var {string/number} $line-height * The default line-height to be used throughout the theme. */ $line-height: dynamic(normal); /** * @var {string} $base-gradient * The base gradient to be used throughout the theme. */ $base-gradient: dynamic('matte'); /** * @var {color} $base-color * The base color to be used throughout the theme. */ $base-color: dynamic(#808080); /** * @var {color} $neutral-color * The neutral color to be used throughout the theme. */ $neutral-color: dynamic(#dcdcdc); /** * @var {color} $body-background-color * Background color to apply to the body element. If set to transparent or 'none' no * background-color style will be set on the body element. */ $body-background-color: dynamic(transparent); /** * @var {boolean} * `true` to enable font icon support throughout the theme. */ $enable-font-icons: dynamic(false); /** * @var {string} * The font-family to use for font icons throughout the theme. Only applicable when * {@link Global_CSS#$enable-font-icons} is `true`. * @private */ $font-icon-font-family: dynamic(FontAwesome);