I'm a newbie to LaTeX, especially the minted package. I would like to customize it such that the code has a similar style to the attached screenshot. Specifically, I wish to be able to customize:
- The font and background shape / color of
mintinline - The spacing between background edge and text inside
minted - Round corners of background in
minted - The line spacing in
minted
Here's what I have thus far:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{listings}
\usepackage{minted}
\usepackage{xcolor}
\usepackage{newverbs}
\definecolor{inline}{RGB}{187,57,82}
\definecolor{bg}{RGB}{22,43,58}
\newverbcommand{\cverb}{\color{inline}}{}
\usemintedstyle{paraiso-dark}
\setminted[java]{bgcolor=bg, fontfamily=fdm, fontsize=\footnotesize}
\begin{document}
\begin{minted}{java}
public class ClassName
\end{minted}

