I have a theorem environment, and I would like:
- The text color of
Problems and their contents to be a custom color (defined as `db' below) - The text color of
Solutions to be a custom color (defined as `dg' below), BUT NOT it's contents. I would like the contents to remain black. - I would not like the contents of
Problems andSolutionss to be italicized Keep the same counter
\usepackage{amsmath} \usepackage{amsthm} \definecolor{db}{RGB}{23,20,119} \definecolor{dg}{RGB}{2,101,15} \newtheoremstyle{dotless}{}{}{\itshape}{}{\bfseries}{}{ }{} \theoremstyle{dotless} %\theoremstyle{plain}% default \newtheorem{thm}{Theorem}%[section] \newtheorem{lem}[thm]{Lemma} \newtheorem{prop}[thm]{Proposition} \newtheorem{cor}[thm]{Corollary} \newtheorem{defn}[thm]{Definition} \newtheorem{examp}[thm]{Example} \newtheorem{conj}[thm]{Conjecture} \newtheorem{rmk}[thm]{Remark} \newtheorem{prob}[thm]{Problem} \newtheorem*{sol}{Solution} \newtheorem*{qu}{Question} \newtheorem*{as}{Assumptions} \newtheorem*{rs}{Restatement} \newtheorem*{ques}{Question}
I've found a few pages about relevant information, but most of it was regarding boxing theorems or changing the entire environment.

\newtheoremstyle, I assume you useamsthm? – Ulrich Schwarz Jan 23 '14 at 05:28Problems I would like the word and count of problem to have the text color, as well as the contents. ForSolution, I would like it to have the text color green, but I would like its contents to remain black. I have updated the question to be a bit more specific. – Reck Jan 23 '14 at 05:33