Created
March 14, 2025 00:25
-
-
Save vicapow/a2a20b52e07a29edb7dabdd667f49625 to your computer and use it in GitHub Desktop.
Flame effect with larger white part
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{tikz} | |
\definecolor{flameOuter}{HTML}{33AAFF} | |
\pgfdeclareradialshading{multigradient}{\pgfpoint{0cm}{0cm}}{% | |
color(0cm)=(white); | |
color(0.5cm)=(white); | |
color(1cm)=(flameOuter) | |
} | |
\begin{document} | |
\begin{center} | |
\begin{tikzpicture} | |
\begin{scope} | |
\clip (0,0) -- (6,0) arc (0:180:6cm) -- cycle; | |
\fill[shading=multigradient] (0,0) ellipse (1cm and 6cm); | |
\end{scope} | |
\end{tikzpicture} | |
\end{center} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment