Conversation
…out alignment and new color variable usage for SVG/Recharts
Greptile SummaryThis is a documentation-only PR that updates Key observations:
Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| CHANGELOG.md | Adds one new changelog entry under 0.7.0-alpha documenting the footer layout alignment to max-w-6xl; accurate and consistent with the actual Footer.tsx code at line 49. |
| docs/DESIGN_SYSTEM.md | Documents two new CSS variables (--color-brand-orange and --color-brand-orange-rgb) injected by @ciphera-net/ui, and adds a usage note for SVG/Recharts contexts. The --color-brand-orange-rgb variable is documented but not yet used anywhere in the codebase. The document's "Last Updated" date (2026-02-06) and version (1.0) were not bumped to reflect these new additions. |
Flowchart
flowchart TD
A["@ciphera-net/ui Tailwind Preset"] -->|"injects CSS variables"| B["--color-brand-orange: #FD5E0F\n--color-brand-orange-rgb: 253, 94, 15"]
B --> C["SVG attributes\ne.g. stopColor, stroke, fill"]
B --> D["Recharts props\ne.g. activeDot fill"]
B --> E["inline style\ne.g. color: var(--color-brand-orange)"]
B -.->|"documented but not yet used"| F["rgba(var(--color-brand-orange-rgb), 0.5)"]
G["--brand-orange (Tailwind token)"] -->|"used via Tailwind classes"| H["bg-brand-orange\ntext-brand-orange\nring-brand-orange"]
Last reviewed commit: ce20205
Additional Comments (1)
The Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/DESIGN_SYSTEM.md
Line: 4:4
Comment:
**Stale document metadata**
The `Last Updated` date and `Version` fields were not bumped to reflect the new content added in this PR. Since the `@ciphera-net/ui` version reference on line 914 (`^0.0.45`) also appears outdated (project is now on `^0.0.57`), it may be worth a single pass to bring the header metadata in sync.
```suggestion
**Last Updated:** 2026-02-17
```
How can I resolve this? If you propose a fix, please make it concise. |
…r better documentation and utility reference
Greptile SummaryThis is a pure documentation PR that backfills two previously undocumented changes made in v0.7.0-alpha:
Both changes are accurate relative to the actual codebase. Two minor housekeeping issues were found in Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| CHANGELOG.md | Adds a single changelog entry for the footer container alignment change (max-w-7xl → max-w-6xl). Entry is accurate, well-scoped, and follows the existing format. |
| docs/DESIGN_SYSTEM.md | Documents two new CSS custom properties injected by the @ciphera-net/ui preset and adds a usage note for SVG/Recharts contexts. Two minor housekeeping issues: the Last Updated date was not bumped, and the @ciphera-net/ui version reference is stale (^0.0.45 vs actual ^0.0.57). |
Flowchart
flowchart TD
A["@ciphera-net/ui preset\n(v0.0.57)"] -->|"injects CSS variables"| B["--color-brand-orange: #FD5E0F\n--color-brand-orange-rgb: 253, 94, 15"]
A -->|"provides utility class"| C[".glow-orange\nbox-shadow: rgba(var(--color-brand-orange-rgb), 0.5)"]
B -->|"used in"| D["SVG / Recharts components\n(e.g. uptime/page.tsx)"]
B -->|"used in"| E["Custom rgba() expressions"]
F["Footer.tsx\n(authenticated)"] -->|"container width"| G["max-w-6xl\n(matches dashboard & page-container-app)"]
H["DESIGN_SYSTEM.md"] -->|"documents"| B
H -->|"documents"| G
I["CHANGELOG.md"] -->|"records"| G
Last reviewed commit: f9eb6bf
Additional Comments (2)
This PR adds new content to the design system (two new color variables and a new usage note), but the Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/DESIGN_SYSTEM.md
Line: 4:4
Comment:
**`Last Updated` date not bumped**
This PR adds new content to the design system (two new color variables and a new usage note), but the `Last Updated` date on line 4 remains `2026-02-06`. It should be updated to reflect when this change was made.
```suggestion
**Last Updated:** 2026-02-17
```
<sub>Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!</sub>
How can I resolve this? If you propose a fix, please make it concise.
The version listed here is Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/DESIGN_SYSTEM.md
Line: 914:914
Comment:
**Stale `@ciphera-net/ui` version reference**
The version listed here is `^0.0.45`, but `package.json` currently pins it at `^0.0.57`. Since this PR is already updating the design system to reflect the new color variables injected by the preset, the version number should be kept in sync too.
```suggestion
**Version:** `^0.0.57`
```
How can I resolve this? If you propose a fix, please make it concise. |
update CHANGELOG.md and DESIGN_SYSTEM.md to reflect footer layout alignment and new color variable usage for SVG/Recharts