I guess my question is rather simple, but I am a beginner to latex. So I would appreciate to get some feedback ragarding the following:
I load the following packages in my document:
\documentclass[12pt,a4paper]{scrreprt}
\usepackage[ngerman,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{helvet}
%tikz
\usepackage{tikz} %Due to this line my text color changes
\usepackage[absolute]{textpos}
%math
\usepackage{amsmath}
\usepackage{amssymb}
%graphics
\usepackage{graphicx}
%for inkscape
\usepackage{color}
\usepackage{transparent}
\textblockorigin{0mm}{0mm}
\renewcommand{\familydefault}{\sfdefault}
\definecolor{bblue}{RGB}{0,73,116}
\begin{document}
\begin{titlepage}
\begin{textblock*}{50mm}[0,1](50mm,50mm)
\color{bblue}\bfseries\Large
dummy title page in bblue
\end{textblock*}
\begin{center}
\color{black}
\end{center}
\begin{textblock*}{60mm}[0,1](55mm,310mm)
dummy text as well
\end{textblock*}
\end{titlepage}
\newpage
...Some text...
\end{document}
I added the tikz package last which changed my text color to blue. Before I loaded the package, the color was black which it is also supposed to be. I read that tikz loads a color package internally. Can I may pass some options to the package to avoid that my text color in my document changes?
Thanks!

\listfilesat the very top of your document, run it through LaTeX, then show the log file, please? – Phelype Oleinik Jul 14 '21 at 11:53