Official colour palette and typography for every MaaSAI subsystem. Click any swatch or code block to copy. Keep these values consistent across dashboards, HMIs, reports and slide decks.
The quick brown fox jumps over the lazy dog. La rápida zorra parda salta sobre el perro perezoso.
:root {
--brand-navy: #223F61;
--brand-orange: #E78C3A;
--brand-sand: #D8D1BE;
--brand-bg: #F3F2EE;
--brand-ink: #262626;
}$brand-navy: #223F61;
$brand-orange: #E78C3A;
$brand-sand: #D8D1BE;
$brand-bg: #F3F2EE;
$brand-ink: #262626;// tailwind.config.js
theme: {
extend: {
colors: {
'brand-navy': '#223F61',
'brand-orange': '#E78C3A',
'brand-sand': '#D8D1BE',
'brand-bg': '#F3F2EE',
'brand-ink': '#262626'
}
}
}