Colour
Each brand has its own colours
{% hint style="success" %} Important agreement
Your brand can have as many colours and variations as you wish
Each technology and platform has it own rules and subtle implementation variations but, in general, your brand colours should rule over platform specifics. {% endhint %}
Colours in SUI
The components in SUI use a base palette located in SUI Theme. Each brand can override it completely with a Brand Theme.
SUI Theme provides 4 shades of darkness and 5 shades of lighness by default. These colours are generated automatically using a SCSS function you can override as well.
{% code title="_color.scss" %}
// Gray color
$c-gray: #777777 !default;
// Gray color light gradients
$c-gray-light-1: color-variation($c-gray, 1) !default;
$c-gray-light-2: color-variation($c-gray, 2) !default;
$c-gray-light-3: color-variation($c-gray, 3) !default;
$c-gray-light-4: color-variation($c-gray, 4) !default;
$c-gray-light-5: color-variation($c-gray, 5) !default;
// Gray color dark gradients
$c-gray-dark-1: color-variation($c-gray, -1) !default;
$c-gray-dark-2: color-variation($c-gray, -2) !default;
$c-gray-dark-3: color-variation($c-gray, -3) !default;
$c-gray-dark-4: color-variation($c-gray, -4) !default;
{% endcode %}
You are not obliged to use the shades generated automatically
We recommend you override each of the shades manualy with special focus on accessibility. Although we initially ensure each component complies with A11y standards, we can't ensure they will work after replacing ours with your brand colours.
Use this plugin for Figma Stark and the contrast website ABC to refine your palette.
You are not obliged to use all the 9 shades from SUI
Although SUI will always generate 9, you can have fewer colours. In the example below Coches·net uses just 3 shades of Gray.
In order to ensure all colours point to an existing color, you need to map the new colours to the original palette.
{% code title="_settings.scss" %}
// Gray color
$c-gray: #606F80;
// Gray color light gradients
$c-gray-light-1: #BFC7D0;
$c-gray-light-2: #EEF0F4;
$c-gray-light-3: $c-gray-light-2;
$c-gray-light-4: $c-gray-light-2;
$c-gray-light-5: $c-gray-light-2;
// Gray color dark gradients
$c-gray-dark-1: #434B51;
$c-gray-dark-2: $c-gray-dark-1;
$c-gray-dark-3: $c-gray-dark-1;
$c-gray-dark-4: $c-gray-dark-1;
{% endcode %}
Tokens system
Colour tokens in SUI Theme
Same as with the rest of tokens, each colour in SUI has a default value that will be used unless it's overriden at any point else in the code.
$c-success: #00A544 default!;
Component Tokens
All the colours in SUI Theme are used to define styles in Components Tokens: In this example both components use the same colour success
for bgc
(background colour).
Overriding Tokens on a Brand Theme
If you override a colour token in your theme, every component using that token will change.
Overriding Component Tokens on a Brand Theme
If you override a component token in your theme, just the element using that component token will change.
Brand themes
Each brand has a specific repo, some of them as independent repo and some as part of a bigger app (mono-repo)
- Milanuncios
- Coches y Motos net
- Coches.net Pro
- Fotocasa y Fotocasa Pro
- Inmofactory
- Habitaclia
- InfoJobs
- ePreselec
We don't have a unified token system for Web and Apps
Although some brands have started efforts to normalise colours in a single format for Web and Native apps.
RGB, HSL, HEX?
We recommend you always start with HSL (hue, saturation y lightness). It's the most intuitive way to create correct palettes for designers and developers.
Use this great tool Color scale
Dark mode (WIP)
We still don't have Dark mode implemented in SUI Theme or Apps, but we are workling on it. Check the section Colour Theming Multiplatform to see the specs and implementation in Figma.