As the title says, I don't get pointy triangle bullet lists.
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{svg}
\usepackage{tikz}
\usetikzlibrary{chains, positioning, shapes.symbols}
\usepackage{etoolbox}
\usepackage{enumitem}
%\usepackage{gensymb}
%\usepackage{siunitx}
%\sisetup {
%locale = DE,
%per-mode = symbol
%}
% THEME AND COLOR SETUP
\usetheme{CambridgeUS}
\usecolortheme[RGB={205,0,0}]{structure}
\setbeamertemplate{items}[triangle]
\setbeamertemplate{sections/subsections in toc}[square]
\newcommand{\quoted}[1]{
\glqq#1\grqq
}
\date{27. June 2018}
\mode<presentation>{}
\begin{document}
\beamertemplatenavigationsymbolsempty
\title{I'm not yet getting the hang of this}
\author{Narusan}
\begin{frame}
\frametitle{Blabla}
\begin{itemize}
\item {\color{black}{no bullet point}}
\item here neither
\end{itemize}
\end{frame}
\end{document}
I don't understand why, it used to work before in other presentations and I haven't really touched anything (I probably did, but nothing I'm aware of).

