├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── README.md ├── assets └── example.webp ├── go.mod ├── go.sum ├── main.go └── themes ├── ayu.go ├── catppuccin.go ├── dracula.go ├── everforest.go ├── gruvbox.go ├── kanagawa.go ├── monochrome.go ├── monokaipro.go ├── nightowl.go ├── nord.go ├── registry.go ├── rosepine.go ├── solarized.go └── tokyonight.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | images/ 2 | output/ 3 | dist/ 4 | 5 | # bin 6 | tint -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/assets/example.webp -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ashish0kumar/tint 2 | 3 | go 1.23.2 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/main.go -------------------------------------------------------------------------------- /themes/ayu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/ayu.go -------------------------------------------------------------------------------- /themes/catppuccin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/catppuccin.go -------------------------------------------------------------------------------- /themes/dracula.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/dracula.go -------------------------------------------------------------------------------- /themes/everforest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/everforest.go -------------------------------------------------------------------------------- /themes/gruvbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/gruvbox.go -------------------------------------------------------------------------------- /themes/kanagawa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/kanagawa.go -------------------------------------------------------------------------------- /themes/monochrome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/monochrome.go -------------------------------------------------------------------------------- /themes/monokaipro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/monokaipro.go -------------------------------------------------------------------------------- /themes/nightowl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/nightowl.go -------------------------------------------------------------------------------- /themes/nord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/nord.go -------------------------------------------------------------------------------- /themes/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/registry.go -------------------------------------------------------------------------------- /themes/rosepine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/rosepine.go -------------------------------------------------------------------------------- /themes/solarized.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/solarized.go -------------------------------------------------------------------------------- /themes/tokyonight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashish0kumar/tint/HEAD/themes/tokyonight.go --------------------------------------------------------------------------------