I've got a problem with text colors, which is quite odd. I've searched the net and this forum but didn't find a solution (or searched for the wrong things

Problem:
The Text in my document is rather grey than black. You don't really see it in the PDF, however you can see it when you print it out. Text appears greyish, citations are perfectly black (see image below)
Problem source
I think I've identified the source of the problem, it seems to be the hyperref package. I use it to avoid that links have a colored box in the document.
1) if I just use colorlinks=false, then the links are colored (oddly enough)
2) so, I decided to use colorlinks=true, and set the link colors to black (see code below)
Problem: now all the OTHER text is slightly grey

Switching between colorlinks=true/false gives me either colored links or grey text!
Thanks for your Help!
Cheers
m.
Using TexnicCenter 1 beta 7.01
PdfTeX Version 3.141592-1.40.4 (MiKTeX 2.7)
Code: Select all
\documentclass[
smallheadings,
oneside,
liststotoc,
bibtotoc,
headsepline
]{scrbook}
\usepackage{a4}
\usepackage[english,ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage{subfigure}
\usepackage{epsfig}
\usepackage{graphicx}
\usepackage[
dvips,
breaklinks={true},
pdftitle={Diplomarbeit},
pdfauthor={me},
pdfcreator={MiKTeX mit KOMA-Script und hyperref},
pdfsubject={mythesis},
]{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black,
citecolor=black,
filecolor=black,
menucolor=black,
pagecolor=black,
urlcolor=black,
breaklinks=true
}
\graphicspath{{grafiken}{../}{kapitel}}
\usepackage{multirow}
\usepackage{framed}
\usepackage{scrpage2}
\pagestyle{scrheadings}
\usepackage{natbib}
%\usepackage{url}
\usepackage[hyphenbreaks]{breakurl}
\setlength{\parindent}{0pt}
\setlength{\parskip}\medskipamount
\setkomafont{sectioning}{\normalfont\normalcolor\bfseries}
\ohead{\pagemark}
\cfoot{}
\cohead{}
\ihead{\headmark}
\setkomafont{pagehead}{\normalfont\bfseries}
\setkomafont{pagenumber}{\normalfont\bfseries}
\automark{section}
\begin{document}
\selectlanguage{english}
\frontmatter
[...]
\backmatter
\bibliographystyle{literatur/natdin}
\bibliography{literatur/da}
\end{document}