Skip to content

Commit

Permalink
Add PaleNight theme
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandregv authored Nov 16, 2024
1 parent df2aa6e commit 893a6a9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions internal/image/themes.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ var themes = map[string]Theme{
"cyberpunk": Cyberpunk,
"night-owl": NightOwl,
"github-light": GitHubLight,
"palenight": PaleNight,
}

func init() {
Expand Down Expand Up @@ -751,4 +752,20 @@ var (
color.RGBA{R: 153, G: 204, B: 255, A: 255},
},
}

PaleNight = Theme{
Name: "PaleNight",
Colors: []color.Color{
color.RGBA{R: 41, G: 45, B: 62, A: 1}, // background #292d3e
color.RGBA{R: 149, G: 157, B: 203, A: 1}, // foreground #959dcb
color.RGBA{R: 103, G: 110, B: 149, A: 1}, // comment #676e95
color.RGBA{R: 195, G: 232, B: 141, A: 1}, // accent #c3e88d
color.RGBA{R: 255, G: 83, B: 112, A: 1}, // redish #ff5370
color.RGBA{R: 247, G: 140, B: 108, A: 1}, // orangish #f78c6c
color.RGBA{R: 255, G: 203, B: 107, A: 1}, // yellowish #ffcb6b
color.RGBA{R: 195, G: 232, B: 141, A: 1}, // greenish #c3e88d
color.RGBA{R: 130, G: 170, B: 255, A: 1}, // bluish #82aaff
color.RGBA{R: 199, G: 146, B: 234, A: 1}, // purplish #c792ea
},
}
)

0 comments on commit 893a6a9

Please sign in to comment.