As I know, in ConTeXt stable, one can use \color[gray:3]{} to display the text inside the brackets with a very light gray color, e.g.:
\setupcolor[rgb]
\starttext
\color[gray:3]{This is some text.}
\stoptext
After upgrading to ConTeXt beta, this no longer works in my document. \color[red]{}, however, does change the text to red.
- Was the syntax for creating gray colors changed in recent betas?
- How can I create a range of gray colors (from white to black) using numbers in ConTeXt?
\definecolor[gray:3][s=.8]? You can also have a look at\definepalet– Marco Sep 11 '12 at 8:26\setupcolor [x11] \dostepwiserecurse{100}{0}{-1}{\color[gray\recurselevel]{foo\space}}. The value determines the percentage of white. – phg Sep 12 '12 at 15:16