Brand
Everything here is the real thing, not a picture of it. The specimens below are the same files and the same CSS the site runs on.
If you host somebody's Buzz me button, this page is what you need. Take the mark, take the colors, take the button, and put them on your page without asking anyone.
The mark
The name is the address and the button all at once, so the wordmark is always written out
in full. There is no short form, no monogram, and no version without .me.
On dark
On light
One file does both: logo.svg is filled with
currentColor, so it takes the color of the text around it. Place it with a CSS
mask rather than an img tag, because an image cannot inherit color and would
stay black on a dark background.
<span class="buzzzz-logo" role="img" aria-label="buzzzz.me"></span>
.buzzzz-logo {
display: block;
width: 112px; /* the mark is 5.09 : 1, height follows */
height: 22px;
background-color: currentColor;
-webkit-mask: url(https://buzzzz.me/logo.svg) no-repeat center / contain;
mask: url(https://buzzzz.me/logo.svg) no-repeat center / contain;
}
Do
- keep clear space around it equal to the height of the letter b;
- let it inherit the text color, one color only;
- keep it at least 90 pixels wide, below that the strokes close up;
- put it in the header, where a name belongs.
Don't
- type the address with hyphens: the logo reads buzz-z-z, the domain is
buzzzz.me; - recolor parts of it, outline it, or add a shadow;
- stretch it: the proportion is fixed;
- bake it into a pill or a badge, the page decides the shape;
- put it on a button. Buttons carry a verb, not a name.
Colors
Written in oklch because the ramps stay even that way. Night is the ground,
amber is the only thing that asks to be pressed, sand is the text.
Night
Amber, the only accent
Text and paper
States, not brand
Green means a call is connected and red means it failed. They belong to the interface and never to the identity: there is no green dot in the logo and no green in a heading.
The button
This is the one people press, and it always says the same two words. Not "Contact", not "Request a call", not "Submit". Buzz me. The long form is Buzz me when you're free.
The label is white, and that is why the fill is amber 600 rather than 500. White on the lighter orange measures 3.5 against a 4.5 minimum; on this one it measures 4.9. Hover goes darker for the same reason: lightening the button would dim its own label at the moment somebody is looking at it.
Primary, on your page
Buzz me Buzz me See how it works<a href="https://buzzzz.me/sarah" class="buzzzz-btn">Buzz me</a>
.buzzzz-btn {
display: inline-flex;
align-items: center;
justify-content: center;
height: 52px;
padding: 0 28px;
border: none;
border-radius: 999px;
background: oklch(56% 0.18 58);
color: #fff;
font: 700 16px/1 Manrope, system-ui, sans-serif;
text-decoration: none;
box-shadow: 0 8px 24px oklch(56% 0.18 58 / 0.38);
transition: background 200ms ease, transform 200ms ease;
}
.buzzzz-btn:hover { background: oklch(50% 0.18 55); }
.buzzzz-btn:active { transform: scale(0.97); }
Under the button, on the page where someone leaves a number, one line has to be there: Your number stays with us. [Name] never sees it. That sentence is the reason people press the button, so it is not decoration and it does not get cut for space.
Type
- Space Grotesk 700 for headings and the wordmark.
- Manrope 400 / 600 / 700 for everything you read.
- JetBrains Mono 600 for numbers, codes and phone numbers.
Words
It reads like a neighbour who worked it out, not a consultant who is selling.
Say
- free, window, we'll connect you;
- Host and Guest for the two sides;
- plain facts and real numbers.
Never
- lead, availability, matching engine, dispatch, funnel;
- countdowns, "only 2 spots left", any manufactured hurry;
- promises of speed, that is callback-widget language;
- dashes and em-dashes, in any language.
Using this
Take it. If you are a host, the mark and the button are yours to place wherever people find you. What we ask is narrow: don't redraw the mark, don't rename the button, and don't imply that buzzzz.me endorses something it hasn't seen. Questions go to info@buzzzz.me.