vLLM
vLLM brand mark, official two-tone colors (yellow + blue).
| id | vllm |
|---|---|
| type | |
| domain | brands |
| requires | tikz, svg.path |
| license | CC0-1.0 |
| author | Daniel Huang |
vllm.tex
\documentclass[border=4pt]{standalone}
% --- packages (mirror these in vllm.meta.json "requires") ---
\usepackage{tikz}
\usetikzlibrary{svg.path}
% --- brand colors (vLLM's official two-tone mark: yellow left stroke, blue
% right stroke — sampled from the vllm-project logo assets; simple-icons
% distributes the same shape single-color) ---
\definecolor{brandvllmyellow}{HTML}{EBB431}
\definecolor{brandvllmblue}{HTML}{63A1FC}
% vLLM logo. Shape data derived from the CC0 simple-icons project
% (https://simple-icons.org), flattened to absolute M/L/C/Z commands with the
% y-axis pre-flipped for TikZ and scaled to ~2.5cm (svg.path ignores TikZ
% coordinate transforms, so the transform is baked into the coordinates).
% The vLLM logo is a trademark of its owner; used here for identification.
\begin{document}
\begin{tikzpicture}
\fill[brandvllmyellow] svg {M 29.49 0 L 29.49 56.574 L 1.2 56.574 Z};
\fill[brandvllmblue] svg {M 70.8 72 L 44.637 58.23 L 29.487 0 L 51.717 0 Z};
\end{tikzpicture}
\end{document}
Use it
The file compiles on its own (\documentclass{standalone}).
Drop it into your project and \input it, or copy the
tikzpicture into your figure. Colours come from the shared
palette defined in the preamble — edit those named colours, not raw hex.
The TikZ code is CC0 1.0; the brand mark remains a trademark of its owner — use it to identify the brand in figures, not to imply endorsement. Details · Rights holder? request removal.