Claude/create gnat admin guide bo srp#162
Merged
Merged
Conversation
Border and button stay #3b6ea8 ($primary), heading uses #1e3355 ($primary-dark) — matching .card-gnatgui from GNAT-gui's own docs/assets/css/style.scss. https://claude.ai/code/session_01H5UbjsuiiGya5n1eUCxoaR
The deployed GNAT-o-sphere site uses --accent: #2d8cb8 for .card--gnatgui (border, heading, and button all share one accent). https://claude.ai/code/session_01H5UbjsuiiGya5n1eUCxoaR
There was a problem hiding this comment.
Pull request overview
Updates the GNAT docs theme styling to adjust the “GUI” card accent color.
Changes:
- Changed
.card-guiborder, heading, and link background colors from#3b6ea8to#2d8cb8.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+130
to
+132
| .card-gui{border-color:#2d8cb8;} | ||
| .card-gui h3{color:#2d8cb8;} | ||
| .card-link-gui{background:#2d8cb8;} |
There was a problem hiding this comment.
Hex color values for the new .card-gui styles use lowercase (#2d8cb8), while the rest of this file (e.g., #D4A017, #C0392B, #7C3AED) consistently uses uppercase hex. For consistency/readability, consider changing #2d8cb8 to #2D8CB8 in these rules.
Suggested change
| .card-gui{border-color:#2d8cb8;} | |
| .card-gui h3{color:#2d8cb8;} | |
| .card-link-gui{background:#2d8cb8;} | |
| .card-gui{border-color:#2D8CB8;} | |
| .card-gui h3{color:#2D8CB8;} | |
| .card-link-gui{background:#2D8CB8;} |
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.
No description provided.