Changing Pixel's color scheme is incredibily easy. Because our Sass is heavily built on variables and mixins you can change the whole color scheme with only 3 lines.
Go to the scss/leo/_variables.scss
file and search for the following variables:
$primary: #174f84;
$secondary: #10ab7c;
$tertiary: #FF7F66;
Change the hex color for each variable to the color palette that you desire.
If you don't fancy our 11 shades of grey you can change them in scss/leo/_variables.scss
. Search for the following variables in the file:
$white: #ffffff;
$gray-100: #f6f9fc;
$gray-200: #e9ecef;
$gray-300: #dde1ed;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #999999;
$gray-700: #777777;
$gray-800: #77838f;
$gray-900: #3e4555;
$black: #111111;
We use Bootstrap's default variable naming conventions and we recommend changing them in scss/leo/_variables.scss
:
$success: $green;
$info: $teal;
$warning: $yellow;
$danger: $red;
Changing these variables will update the colors of all class modifiers that use
*-success, *-danger
(eg. .text-danger
).
Search for the following variables in the scss/leo/_variables.scss
file:
$gray: $gray-500;
$light: $gray-300;
$dark: $gray-900;
$soft: $gray-100;
Changing these variables will update the colors of all class modifiers that use
*-light, *-dark
(eg. .bg-light
).