Last active
March 13, 2025 01:17
-
-
Save vicapow/d5fc8a6d9b70be4a539ea15906308ec3 to your computer and use it in GitHub Desktop.
Flame like effect in Tikz
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[dvipsnames]{xcolor} | |
\usepackage{tikz} % Required for creating graphics | |
\begin{document} | |
\section*{Example of a `Flame' like effect in Tikz} | |
\definecolor{flameOuter}{HTML}{33AAFF} | |
\begin{center} | |
\begin{tikzpicture} | |
\begin{scope} | |
\clip (0,0) -- (6,0) arc (0:180:6cm) -- cycle; | |
\fill[inner color=white, outer color=flameOuter] (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