コンテンツへスキップ

メッシュグラデーション&壁紙生成ツール

ドラッグ可能な制御点、シード値、4K PNGエクスポートを備えた美しいメッシュグラデーションを生成。

メッシュグラデーション&壁紙生成ツール

100% クライアント処理

ドラッグ可能な制御点、シード値、4K PNGエクスポートを備えた美しいメッシュグラデーションを生成。

デザインプリセット

グラデーション設定

シード、制御点、ぼかし半径、背景色をリアルタイムに調整できます。

制御点の数: 4 / 6

シード、制御点、ぼかし半径、背景色をリアルタイムに調整できます。

制御点は最低4点必要です。

50 px
px

シード、制御点、ぼかし半径、背景色をリアルタイムに調整できます。

#0f172a

シード、制御点、ぼかし半径、背景色をリアルタイムに調整できます。

選択中の制御点

point-1

21 %
%

シード、制御点、ぼかし半径、背景色をリアルタイムに調整できます。

34 %
%

シード、制御点、ぼかし半径、背景色をリアルタイムに調整できます。

#2beeb3

シード、制御点、ぼかし半径、背景色をリアルタイムに調整できます。

ライブグラデーションプレビュー
インタラクティブキャンバス

ポイントをドラッグ、または矢印キー/スライダーで位置を調整できます。

1
2
3
4

エクスポート&ダウンロード

background-color: #0f172a;
background-image:
    radial-gradient(at 21% 34%, #2beeb3 0px, transparent 55%),
    radial-gradient(at 73% 26%, #3c5bf6 0px, transparent 55%),
    radial-gradient(at 37% 67%, #ea62ad 0px, transparent 55%),
    radial-gradient(at 68% 70%, #f6ec60 0px, transparent 55%);
filter: blur(50px);
エクスポート解像度

高解像度 PNG 壁紙ダウンロード

How CSS Mesh Gradients and Layered Radial Gradients Work

Mesh gradients create organic, fluid color transitions by blending multiple independent color nodes across a two-dimensional surface. Rather than restricting colors to linear or conical paths, mesh gradients distribute radial color fields from customized focal points with smooth transparent falloffs.

Mathematical Foundation of Seeded PRNG Generation

Deterministic generation uses a pseudo-random number generator (Mulberry32 PRNG) initialized with a 32-bit unsigned integer seed. Every execution with the same seed reproduces the exact spatial coordinates, color distributions, and layer hierarchies without variance:

s = (s + 0x6D2B79F5) >>> 0;
t = Math.imul(s ^ (s >>> 15), 1 | s);
t = (t + Math.imul(t ^ (t >>> 7), 61 | t)) ^ t;

Multi-Resolution Client-Side Canvas Rasterization

Exported PNGs are rendered directly on client-side HTML5 2D canvas surfaces at full device resolutions: 1080p Full HD (1920×1080), 2K Quad HD (2560×1440), and 4K Ultra HD (3840×2160). Because all rendering occurs strictly within your local browser sandbox without requesting external assets, exported canvases remain completely untainted and 100% private.

Frequently Asked Questions

画像ファイルを使わずに純粋なCSSだけでグラデーションが描ける仕組みは?
背景色の上に複数の radial-gradient() による円形グラデーションを透明フェードで重ね、CSSの blur() フィルターを適用することで、滑らかで有機的なメッシュ質感を再現しています。
シード値(PRNG)による再現性とは何ですか?
Mulberry32 擬似乱数アルゴリズムにより、入力された数値シードから正確な座標と色彩調和を算出します。同一のシード値を指定すれば、いつでも完全に同じグラデーションを再現できます。
4K壁紙の書き出しはブラウザ内で処理されますか?
はい。外部サーバーに画像を送信することなく、お使いの端末の HTML5 Canvas API を用いて最大 3840×2160 ピクセルの解像度で直接高画質レンダリングします。
生成されたグラデーションは商用利用できますか?
はい。生成された CSS コードおよび PNG 画像は商用・個人利用を問わず、完全無料で自由にご活用いただけます。