fix: correct brand color to official Pantone 7466 U#268
Draft
MarkAtwood wants to merge 1 commit into
Draft
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the MkDocs theme “primary teal” accent color from #1fbeca to the official brand teal #00B2A9 (PANTONE 7466 U) across the shared and wolfSSH-specific skin stylesheets.
Changes:
- Replace all occurrences of
#1fbecawith#00B2A9in the MkDocs skin CSS used by wolfSSH (EN/JA) and the sharedcommonskin. - Add a short header comment to each skin file documenting the brand color reference (Pantone/CMYK/previous value).
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 8 comments.
| File | Description |
|---|---|
| common/skin.css | Updates shared MkDocs accent teal to #00B2A9 and documents the brand color in a header comment. |
| wolfSSH/src/skin.css | Updates English wolfSSH manual skin accent teal to #00B2A9 and adds the brand color header comment. |
| wolfSSH/src-ja/skin.css | Updates Japanese wolfSSH manual skin accent teal to #00B2A9 and adds the brand color header comment. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+1
to
+5
| /* wolfSSL Brand Colors | ||
| * Primary Teal: #00B2A9 (PANTONE 7466 U) | ||
| * CMYK: 70/0/23/0 (from 2012 original logo) | ||
| * Previous incorrect value: #1fbeca | ||
| */ |
Comment on lines
+5
to
6
| */ | ||
| .md-header{ |
Comment on lines
77
to
+78
| .md-typeset a:hover { | ||
| color: #1fbeca; | ||
| color: #00B2A9; |
Comment on lines
+1
to
+5
| /* wolfSSL Brand Colors | ||
| * Primary Teal: #00B2A9 (PANTONE 7466 U) | ||
| * CMYK: 70/0/23/0 (from 2012 original logo) | ||
| * Previous incorrect value: #1fbeca | ||
| */ |
Comment on lines
+5
to
6
| */ | ||
| .md-header{ |
Comment on lines
77
to
+78
| .md-typeset a:hover { | ||
| color: #1fbeca; | ||
| color: #00B2A9; |
Comment on lines
78
to
+79
| .md-typeset a:hover { | ||
| color: #1fbeca; | ||
| color: #00B2A9; |
Comment on lines
+1
to
+5
| /* wolfSSL Brand Colors | ||
| * Primary Teal: #00B2A9 (PANTONE 7466 U) | ||
| * CMYK: 70/0/23/0 (from 2012 original logo) | ||
| * Previous incorrect value: #1fbeca | ||
| */ |
Updates primary teal from #1fbeca to #00B2A9 (Pantone 7466 U) across all MkDocs skin files. This matches the official color specified in the original 2012 logo design (CMYK 70/0/23/0). The previous #1fbeca was close but not brand-accurate. Adds documentation comments to all skin.css files explaining the Pantone specification. Files updated: - common/skin.css (shared by all manuals) - wolfSSH/src/skin.css (English) - wolfSSH/src-ja/skin.css (Japanese) Coordinates with blog color fix (posts.wolfssl.com). Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
5423aba to
fe6ac72
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Updates the primary teal color from
#1fbecato#00B2A9across all MkDocs skin files to match the official PANTONE 7466 U specification from the original 2012 logo design.Changes
All instances of
#1fbecareplaced with#00B2A9(8-11 occurrences per file).Brand Color Documentation
Added header comments to all skin files documenting:
Background
The incorrect
#1fbecacolor has been used across wolfSSL web properties for years. The official Pantone spec was discovered inwolfssl-logo-2012.epsfile metadata (created December 14, 2012 by designer Laura).Color comparison:
#1fbeca- RGB(31, 190, 202) - too cyan/blue#00B2A9- RGB(0, 178, 169) - proper teal, matches Pantone 7466 URelated Changes
Testing
Visual regression testing recommended:
make allDraft Status
Marked as draft to coordinate timing with:
Ready to merge once docs site goes live.
🤖 Generated with Claude Code