Ghana's verified crowdfunding platform — visual identity, design tokens, and usage guidelines.
Design Personality
Five keywords that define every design decision. If a component doesn't feel like at least three of these, reconsider it.
Colour Palette
High-contrast palette anchored in Ghanaian green — growth, trust, natural abundance. Navy builds authority. Click any swatch to copy the hex code.
Type System
Nunito for display personality, Nunito Sans for body readability. DM Mono for technical labels. All free on Google Fonts.
Every Giving is Ghana's verified crowdfunding platform. We help real people raise money for medical bills, education, church projects, and community causes — with identity verification built in so donors can give with confidence.
"I reached my fundraising goal in three weeks. Strangers donated because they could see my identity was verified." — Ama, Accra
Logo & Wordmark
The wordmark uses Nunito Black at -1px tracking. "Every" is always Primary Green. "Giving" matches the background. Never separate the two words.
Button System
Pill-shaped buttons for all primary actions. Hover always lifts 2px — a signature EveryGiving micro-interaction.
Spacing System
4px base grid. All spacing is a multiple of 4. Use token names in code for consistency.
Do's & Don'ts
Non-negotiable rules to keep the brand consistent across every touchpoint.
Tailwind Config
Paste this into your tailwind.config.ts to implement the full design system.
// tailwind.config.ts
module.exports = {
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#02A95C',
dark: '#018A4A',
mid: '#05C96E',
light: '#E6F9F1',
},
navy: '#1A2B3C',
},
fontFamily: {
nunito: ['Nunito', 'sans-serif'],
'nunito-sans': ['Nunito Sans', 'sans-serif'],
},
boxShadow: {
primary: '0 8px 24px rgba(2,169,92,0.30)',
},
},
},
}