Ratios are WCAG 2 contrast between the roles as assigned above. AA needs 4.5:1 for body text, 3:1 for large text.
:root {
--text: #0B2A4A;
--accent: #134074;
--primary: #2A6FB0;
--secondary: #6FA3D6;
--surface: #CFE3F5;
}
$cool-blue-text: #0B2A4A; $cool-blue-accent: #134074; $cool-blue-primary: #2A6FB0; $cool-blue-secondary: #6FA3D6; $cool-blue-surface: #CFE3F5;
// tailwind.config.js — theme.extend.colors
colors: {
'cool-blue': {
'text': '#0B2A4A',
'accent': '#134074',
'primary': '#2A6FB0',
'secondary': '#6FA3D6',
'surface': '#CFE3F5',
},
}
{
"cool-blue": {
"text": {
"value": "#0B2A4A",
"type": "color"
},
"accent": {
"value": "#134074",
"type": "color"
},
"primary": {
"value": "#2A6FB0",
"type": "color"
},
"secondary": {
"value": "#6FA3D6",
"type": "color"
},
"surface": {
"value": "#CFE3F5",
"type": "color"
}
}
}
{
"text": "#0B2A4A",
"accent": "#134074",
"primary": "#2A6FB0",
"secondary": "#6FA3D6",
"surface": "#CFE3F5"
}
/* Paste into Canva → Brand Kit → Brand Colors */ #0B2A4A #134074 #2A6FB0 #6FA3D6 #CFE3F5