Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/ui/markdown.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func glamourStyleConfig(thm theme.Theme) ansi.StyleConfig {
},
H6: ansi.StyleBlock{
StylePrimitive: ansi.StylePrimitive{
Color: stringPtr(thm.Success),
Color: stringPtr(thm.Accent6),
Bold: boolPtr(false),
},
},
Expand Down
3 changes: 2 additions & 1 deletion internal/ui/styles.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ func newStyles(thm theme.Theme) styles {
accent3C := lipgloss.Color(thm.Accent3)
accent4C := lipgloss.Color(thm.Accent4)
accent5C := lipgloss.Color(thm.Accent5)
accent6C := lipgloss.Color(thm.Accent6)
successC := lipgloss.Color(thm.Success)
dangerC := lipgloss.Color(thm.Danger)
mutedC := lipgloss.Color(thm.Muted)
Expand All @@ -60,7 +61,7 @@ func newStyles(thm theme.Theme) styles {
contextTitle: titleBase.
Background(accent3C),
taskDetailsTitle: titleBase.
Background(successC),
Background(accent6C),
sectionHeader: lipgloss.NewStyle().
PaddingTop(1).
PaddingBottom(1).
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/catppuccin_mocha.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func catppuccinMocha() Theme {
Accent3: "#a6e3a1",
Accent4: "#f2aede",
Accent5: "#ebd391",
Accent6: "#fab387",
Success: "#89d88b",
Danger: "#f37799",
Muted: "#a6adc8",
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/dracula.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func dracula() Theme {
Accent3: "#bd93f9",
Accent4: "#8be9fd",
Accent5: "#f1fa8c",
Accent6: "#ffb86c",
Success: "#69ff94",
Danger: "#ff5555",
Muted: "#6272a4",
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/github_dark.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func githubDark() Theme {
Accent3: "#6ca4f8",
Accent4: "#db61a2",
Accent5: "#e3b341",
Accent6: "#a371f7",
Success: "#56d364",
Danger: "#db61a2",
Muted: "#8b949e",
Expand Down
3 changes: 2 additions & 1 deletion internal/ui/theme/gruvbox_dark.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ func gruvboxDark() Theme {
Accent3: "#83a598",
Accent4: "#b8bb26",
Accent5: "#d3896b",
Success: "#d3869b",
Accent6: "#d3869b",
Success: "#b8bb26",
Danger: "#fb4934",
Muted: "#928374",
Foreground: "#ebdbb2",
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/gruvbox_light.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func gruvboxLight() Theme {
Accent3: "#076678",
Accent4: "#79740e",
Accent5: "#8f3f71",
Accent6: "#356b4b",
Success: "#79740e",
Danger: "#9d0006",
Muted: "#928374",
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/monokai_classic.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func monokaiClassic() Theme {
Accent3: "#a6e22e",
Accent4: "#fd971f",
Accent5: "#e6db74",
Accent6: "#ff81ca",
Success: "#a6e22e",
Danger: "#f92672",
Muted: "#75715e",
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/onedark.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func oneDark() Theme {
Accent3: "#c678dd",
Accent4: "#e5c07b",
Accent5: "#d19a66",
Accent6: "#56b6c2",
Success: "#98c379",
Danger: "#e06c75",
Muted: "#7f848e",
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/rose_pine_moon.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func rosePineMoon() Theme {
Accent3: "#f6c177",
Accent4: "#ea9a97",
Accent5: "#3e8fb0",
Accent6: "#f2d5b2",
Success: "#9ccfd8",
Danger: "#eb6f92",
Muted: "#6e6a86",
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/theme.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ type Theme struct {
Accent3 string
Accent4 string
Accent5 string
Accent6 string
Success string
Danger string
Muted string
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/tokyonight.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func tokyonight() Theme {
Accent3: "#9ece6a",
Accent4: "#bb9af7",
Accent5: "#e0af68",
Accent6: "#7dcfff",
Success: "#9ece6a",
Danger: "#f7768e",
Muted: "#565f89",
Expand Down
1 change: 1 addition & 0 deletions internal/ui/theme/xcode_dark.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ func xcodeDark() Theme {
Accent3: "#ff8170",
Accent4: "#b281eb",
Accent5: "#d9c97c",
Accent6: "#abd97c",
Success: "#78c2b3",
Danger: "#ff7ab2",
Muted: "#7f8c98",
Expand Down
Loading