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: #2B2118;
--accent: #5C4033;
--primary: #8B6F47;
--surface: #A9A18C;
--secondary: #3B3A30;
}
$dark-academia-text: #2B2118; $dark-academia-accent: #5C4033; $dark-academia-primary: #8B6F47; $dark-academia-surface: #A9A18C; $dark-academia-secondary: #3B3A30;
// tailwind.config.js — theme.extend.colors
colors: {
'dark-academia': {
'text': '#2B2118',
'accent': '#5C4033',
'primary': '#8B6F47',
'surface': '#A9A18C',
'secondary': '#3B3A30',
},
}
{
"dark-academia": {
"text": {
"value": "#2B2118",
"type": "color"
},
"accent": {
"value": "#5C4033",
"type": "color"
},
"primary": {
"value": "#8B6F47",
"type": "color"
},
"surface": {
"value": "#A9A18C",
"type": "color"
},
"secondary": {
"value": "#3B3A30",
"type": "color"
}
}
}
{
"text": "#2B2118",
"accent": "#5C4033",
"primary": "#8B6F47",
"surface": "#A9A18C",
"secondary": "#3B3A30"
}
/* Paste into Canva → Brand Kit → Brand Colors */ #2B2118 #5C4033 #8B6F47 #A9A18C #3B3A30