View Single Post
It is possible to output the file from OmniGraffle in a texteditor.

If you do not compress the file, the file will be a XML-file, which can be read by any ext editor.

What I did was searching for some color information in combination with some font information. I found this in my file:

Code:
<string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
{\fonttbl\f0\fnil\fcharset0 ProximaNova-Regular;}
{\colortbl;\red255\green255\blue255;\red179\green102\blue102;}
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural

\f0\b\fs24 \cf0 \cb2 zoeken}</string>
I replaced all lines that look like this:

Code:
{\colortbl;\red255\green255\blue255;\red179\green102\blue102;}
with this:

Code:
{\colortbl;\red255\green255\blue255;}
I figured the first three values are defining the used color definition (rgb, hsl, cmyk) and the second one might give the used color.

I’m not sure, but I succeeded in removing the background color from the text. Maybe removing the line completely works as well, I’m not sure. Maybe this also removes the color from the text itself, I’m not sure. More research might be necessary, but for me this did the trick. :-)
I hope this might be of some use to others as well.