Colors

Orange is a black, white and orange brand. In digital, orange is used as a highlight or focus color. Core colors should always dominate.

Color palette is used throughout Boosted in multiple ways, either in components or as utilities for both background-color and color.

Core colors

White
#fff
$white
Black
#000
$secondary
Accessible orange
#f16e00
$accessible-orange
Brand orange
#ff7900
$brand-orange

Supporting colors

Blue
#4bb4e6
$supporting-blue
Yellow
#ffd200
$supporting-yellow
Green
#50be87
$supporting-green
Purple
#a885d8
$supporting-purple
Pink
#ffb4e6
$supporting-pink

Functional colors

Green
#32c832
$functional-green
Blue
#527edb
$functional-blue
Yellow
#fc0
$functional-yellow
Red
#cd3c14
$functional-red

Grays

300
#eee
$gray-300
400
#ddd
$gray-400
500
#ccc
$gray-500
600
#999
$gray-600
700
#666
$gray-700
900
#333
$gray-900

OBS Gray

800
#595959
$gray-800

Usage

Boosted sets an additional layer to use Orange Brand's color tokens names—defined first and mapped to Bootstrap core variables. Boosted core uses Bootstrap's naming for maintenance ease, but you're encouraged to use Orange color tokens when it comes to custom code.

Orange color tokens

// Boosted mod
//// Core colors
$accessible-orange: #f16e00;
$brand-orange:      #ff7900;
//// Functional colors
$functional-green:  #32c832;
$functional-blue:   #527edb;
$functional-yellow: #fc0;
$functional-red:    #cd3c14;
//// Supporting colors
$supporting-blue:   #4bb4e6;
$supporting-yellow: #ffd200;
$supporting-green:  #50be87;
$supporting-purple: #a885d8;
$supporting-pink:   #ffb4e6;

Bootstrap core variables

$blue:    $functional-blue;
$indigo:  $supporting-purple;
$purple:  $supporting-purple;
$pink:    $supporting-pink;
$red:     $functional-red;
$orange:  $brand-orange;
$yellow:  $functional-yellow;
$green:   $functional-green;
$teal:    $supporting-green;
$cyan:    $supporting-blue;