How to start adjusting the default variables setup with the Provus theme.
Provus ships fully themed. All you need to add is content to have a complete website. However, Provus is also fully customizable. The themes colors, fonts, borders, shading, and much more can be edited to match your branding and style guides. This section provides some basic directions for custom theming of your Provus site.
Getting started
NOTE: The following instructions assume the use of Sass for theming. Sass files must be compiled into CSS files. While edits made to the CSS files directly if you are unfamiliar with or prefer not to use Sass, the Sass files will be overwritten if you later switch to compiling Sass files. Sass allows for global changes to variables so that multiple instances of color or font usage do not need to be changed individually.
Start by navigating to scss/global/_variables.scss in your subtheme directory.
At the very top of this file is an import for customizing the web font. Change the URL to web font you plan to use, or write CSS to bring in your own locally hosted fonts.
After that, adjust the hex variables for text colors, body colors, accent colors, and any of the other color variables included in the Provus subtheme as needed.
// Text.
$text-primary: #2C2E30;
$text-secondary: #646F79;
$text-contrast: #FFFFFF;
$text-hint: #747474;
$body-color: #2C2E30;
// Accent.
$accent-light: $secondary-accent;
$accent-dark: $secondary-contrast;
// System/Alert Colors.
$success-light: #D1FAE5;
$success-primary: #258750;
$success-medium: #007038;
$success-contrast: #024825;
$error-light: #FEE2E2;
$error-primary: #D83A52;
$error-medium: #B63546;
$heading-color: #1d2b36;
// Base Font Size
$font-size-base: 1rem;
// Border Radius for Cards
$card-border-radius: .25rem;
// Card Padding
$card-spacing: 1.25rem;
// Card Border Colors
$card-border-color: #ddd;
// Site Background Color
$body-bg: #fff;
// Main Text Color
$body-color: #2C2E30;
// Text Primary Color
$text-primary: #2C2E30;
// Text Secondary Color
$text-secondary: #646F79;
// Text Contrast Color
$text-contrast: #FFFFFF;
// HR Color
$hr-color: #2C2E30;
// Border Color
$border-color: #C2D1D9;