Skip to content

Instantly share code, notes, and snippets.

@seungwonpark
Created September 1, 2016 04:24
Show Gist options
  • Save seungwonpark/9805853fd42b4717e779d700d69d4008 to your computer and use it in GitHub Desktop.
Save seungwonpark/9805853fd42b4717e779d700d69d4008 to your computer and use it in GitHub Desktop.
koistudy_icon
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shadows}
\definecolor{KOIyellow}{RGB}{255,204,51}
\definecolor{KOIred}{RGB}{255,0,51}
\definecolor{KOIgreen}{RGB}{0,204,51}
\begin{document}
\begin{tikzpicture}
\draw[white] (0,0) -- (4.5,0) -- (4.5,2.7);
\fill[drop shadow, fill=KOIyellow] (0.45,1.9) rectangle (3.0,2.4);
\fill[drop shadow, KOIred] (0.45,1.2) rectangle (2.5,1.7);
\fill[drop shadow, KOIgreen] (0.45,0.55) rectangle (3.5,1.05);
\draw (3.6,2.15) node {\Large \sf TLE};
\draw (3.72,1.45) node {\Large \sf WA};
\draw (3.75,0.8) node {\Large \sf AC};
\end{tikzpicture}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment