import React from 'react'; export const Sections = () => { const contexts = [ 'primary', 'secondary', 'success', 'danger', 'warning', 'info', 'light', 'dark', ]; return ( <>

Sections

Color theme is based on VendorFuel logo colors, using a double split complementary harmony. However, the VendorFuel orange is only used for the logo and secondary gray color sparingly.

VendorFuel orange

PANTONE 165 C

VendorFuel warm gray

PANTONE Warm Gray 11 C
{contexts.map((context) => (

{context}

))}
); };