From f7f5bb614f7a76c5f1ea6cb40f99d75d2c034ed1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 10:44:09 +0000 Subject: [PATCH] docs(styles): add ScheduleCalendar* styles to README Add missing documentation for the five schedule calendar heatmap styles (ScheduleCalendarEmpty, ScheduleCalendarLow, ScheduleCalendarMedium, ScheduleCalendarHigh, ScheduleCalendarCritical) to the Public API overview table and the Pre-configured Styles section. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- pkg/styles/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkg/styles/README.md b/pkg/styles/README.md index 34f6f954272..a5f6dd4018a 100644 --- a/pkg/styles/README.md +++ b/pkg/styles/README.md @@ -16,7 +16,7 @@ The `styles` package exports the following: |----------|---------| | Adaptive colors | `ColorError`, `ColorWarning`, `ColorSuccess`, `ColorInfo`, `ColorPurple`, `ColorYellow`, `ColorComment`, `ColorForeground`, `ColorBackground`, `ColorBorder`, `ColorTableAltRow` | | Border styles | `RoundedBorder`, `NormalBorder`, `ThickBorder` | -| Pre-configured `lipgloss.Style` | `Error`, `Warning`, `Success`, `Info`, `FilePath`, `LineNumber`, `Command`, `Progress`, `Prompt`, `Count`, `Verbose`, `Header`, `TableHeader`, `TableCell`, `TableTitle`, `TableBorder`, `ErrorBox`, `ServerName`, `ServerType`, `TreeEnumerator`, `TreeNode` | +| Pre-configured `lipgloss.Style` | `Error`, `Warning`, `Success`, `Info`, `FilePath`, `LineNumber`, `Command`, `Progress`, `Prompt`, `Count`, `Verbose`, `Header`, `TableHeader`, `TableCell`, `TableTitle`, `TableBorder`, `ErrorBox`, `ServerName`, `ServerType`, `TreeEnumerator`, `TreeNode`, `ScheduleCalendarEmpty`, `ScheduleCalendarLow`, `ScheduleCalendarMedium`, `ScheduleCalendarHigh`, `ScheduleCalendarCritical` | | Huh theme | `HuhTheme` — `huh.ThemeFunc` for Dracula-inspired interactive forms | ## Adaptive Color Variables @@ -78,6 +78,11 @@ These `lipgloss.Style` values are ready to use directly: | `Header` | Success/green, bold, bottom margin | Section headers | | `TreeEnumerator` | Border color | Tree branch characters | | `TreeNode` | Foreground | Tree node text | +| `ScheduleCalendarEmpty` | Comment/muted | Heatmap: zero-trigger slots | +| `ScheduleCalendarLow` | Info/cyan | Heatmap: low-intensity slots | +| `ScheduleCalendarMedium` | Success/green | Heatmap: medium-intensity slots | +| `ScheduleCalendarHigh` | Warning/orange | Heatmap: high-intensity slots | +| `ScheduleCalendarCritical` | Error/red, bold | Heatmap: critical-intensity slots | ## Usage Examples