It provides the basic framework settings and contains the following variables:
$inuit-base-font-size will be the font-size of your normal continuous text paragraphs. Look out for normal paragraphs and assign its font-size here.
$inuit-base-line-height will in the best case be your $inuit-base-font-size*1.5.
It is wise to keep this an even number.
$inuit-base-text-color assigns the text-color to every element.
$inuit-base-background-color assigns the background-color to the html element.
// High-level base settings.
$inuit-base-font-size: 16px !default;
$inuit-base-line-height: 24px !default;
$inuit-base-text-color: #333 !default;
$inuit-base-background-color: #fff !default;
$inuit-namespace you can assign a prefix to every class (i.e. all the objects) following in the framework.
// Namespace.
$inuit-namespace: null !default;
// Do not change these!
$inuit-base-spacing-unit: $inuit-base-line-height;
$inuit-base-spacing-unit--tiny: round($inuit-base-spacing-unit / 4);
$inuit-base-spacing-unit--small: round($inuit-base-spacing-unit / 2);
$inuit-base-spacing-unit--large: round($inuit-base-spacing-unit * 2);
$inuit-base-spacing-unit--huge: round($inuit-base-spacing-unit * 4);