Skip to main content

Changing the branding of your donation form

custom font, custom colors, donation form, mysite

What you can change

The donation form uses three brand colors. You can change any or all of them:

Color

What it controls

Default

Primary

Main text, headings, navigation, secondary buttons, payment summary headers

#4a0e00 (dark red)

Accent

"Donate" button, links, selected payment method, focus rings, important highlights

#fc5936 (orange)

Background

Page background, section panels, soft surfaces (tip section, cover-fee box, etc.)

#fff8f3 (cream)

How to apply your colors

  1. Pick your color hex codes (e.g., from your brand guidelines or a tool like coolors.co)

  2. Copy the template below into your Custom CSS field

  3. Replace the hex codes with your values

  4. Save — the form will use your colors (you may need to clear your page's cache for the change to appear).

Template CSS

 :root {   
--mahogany: #YOUR_PRIMARY_HEX;
--fiery: #YOUR_ACCENT_HEX;
--seashell: #YOUR_BACKGROUND_HEX;
}

How you'd change all three

:root {   
--mahogany: #1a3a8a; /* Navy blue for text */
--fiery: #16a34a; /* Green for buttons */
--seashell: #f0f9ff; /* Pale blue background */
}

Example: Override only ONE color

If you only want to change the donate-button color:

:root {   --fiery: #16a34a; 
}

⚠️ Tips for choosing colors

  • Contrast matters. Text needs to be readable on its background. The Accent color is used for buttons with white text, so make sure it's dark enough. The Primary color is used for text on white/cream backgrounds, so make sure it's dark enough to read.

  • Test before publishing. Preview your form in both desktop and mobile views, and check both English and Hebrew (if applicable) before going live.

  • Don't pick three similar shades. Buttons should stand out from the background. Pick an Accent color that contrasts with both Primary and Background.

  • Use full 6-digit hex codes with a # prefix (e.g., #1a3a8a, not 1a3a8a or #1a3).

Did this answer your question?