Skip to content

Instantly share code, notes, and snippets.

@vicapow
Last active March 13, 2025 01:17
Show Gist options
  • Save vicapow/d5fc8a6d9b70be4a539ea15906308ec3 to your computer and use it in GitHub Desktop.
Save vicapow/d5fc8a6d9b70be4a539ea15906308ec3 to your computer and use it in GitHub Desktop.
Flame like effect in Tikz
\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