1
0
Fork
You've already forked nicegradient
0
CLI for making nice gradients.
  • Rust 100%
2026年05月26日 03:54:42 -05:00
src Fixed random discontinuities (finally) 2026年05月26日 03:54:42 -05:00
.gitignore works 2026年01月12日 01:14:06 -06:00
AGENTS.md New flexible architecture 2026年04月30日 14:54:47 -05:00
Cargo.lock multithreading 2026年01月12日 23:26:45 -06:00
Cargo.toml multithreading 2026年01月12日 23:26:45 -06:00
LICENSE Initial commit 2026年01月11日 20:52:25 +01:00
README.md Tweak AI disclosure 2026年05月07日 22:32:11 -05:00

nicegradient

🤖 This code was written by a human using LLM assistance.

CLI for making nice gradients.

Building

Simply clone this repository and cargo build --release.

Usage

❯ ./target/release/nicegradient --help
Usage: nicegradient -w <width> -h <height> [-a <color-a>] [-b <color-b>] [--scale <scale>] [--noise <noise>] [-o <output>] <command> [<args>]
Create a nice gradient.
Options:
 -w, --width horizontal resolution, in pixels
 -h, --height vertical resolution, in pixels
 -a, --color-a starting color for the gradient (default: #000000)
 -b, --color-b ending color for the gradient (default: #FFFFFF)
 --scale scaling factor, controls how "zoomed in" the noise is
 (default: 3.0)
 --noise amount of uniform random noise applied to the final image
 (default: 0.2)
 -o, --output output filename (default: gradient.png)
 --help, help display usage information
Commands:
 shard Shard noise shader by ENDESGA
❯ ./target/release/nicegradient --help shard
Usage: nicegradient shard [--sharpness <sharpness>]
Shard noise shader by ENDESGA
Options:
 --sharpness sharpness of the gradient (default: 33.0)
 --help, help display usage information