Facebook Update README.md #3328
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This document details the visual specifications and implementation of the Facebook verification badge ("Blue Badge"). The verified badge confirms that a Page or profile for a public figure, media company, or brand is authentic.
Large Format (Standalone Icon)
64px Rendering
Usage in Context
Below are examples of how the badge appears alongside text elements in different contexts, such as profile headers and news feed posts.
Meta
(Page Header Context - 24px Badge)
Mark Zuckerberg
6ag
2 hrs · 🌍
(Feed/Comment Context - 16px Badge)
Property Value Description
Background Color #1877F2 Official Facebook Blue (RGB: 24, 119, 242) Shape Circle (Border-radius: 50%) Perfect circular container Icon Color #FFFFFF (White) High contrast checkmark Icon Geometry Rotated L-shape 45-degree rotation of border elements Implementation Code
The following CSS class definitions are used to generate the badges shown in this document.
/* Base Badge Container /
.fb-verified-badge {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #1877F2; / Official Brand Color */
border-radius: 50%;
color: white;
}
/* Checkmark Construction using Border Manipulation / .fb-checkmark {
display: block;
transform: rotate(45deg);
border-bottom: 2px solid white;
border-right: 2px solid white;
/ Size must be defined relative to container */
}
3. Design Guidelines When implementing the verification badge, adhere to the following guidelines to ensure it meets platform standards:
Spacing: The badge should maintain a small margin (typically 4-6px) from the text it verifies. It should never touch the text directly.
Alignment: The badge should be vertically centered relative to the text line height. For multi-line text, it aligns with the first line or the specific entity name being verified.
Color Integrity: Do not alter the color of the badge. It must remain #1877F2 on light backgrounds. On dark backgrounds, a white border may be added to the outer circle for separation, though the inner blue remains constant.
Description of Problem
Proposed Solution
Additional Information