From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Subject: Re: Html and unreadable characters Date: Sun, 01 Nov 2009 22:33:34 +0100 Message-ID: <1257111214.8472.2.camel@beteigeuze> References: Reply-To: sebastian_rose@gmx.de Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N4i3c-0007jm-ON for emacs-orgmode@gnu.org; Sun, 01 Nov 2009 16:33:52 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N4i3X-0007cz-O1 for emacs-orgmode@gnu.org; Sun, 01 Nov 2009 16:33:51 -0500 Received: from [199.232.76.173] (port=47778 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N4i3X-0007cq-Es for emacs-orgmode@gnu.org; Sun, 01 Nov 2009 16:33:47 -0500 Received: from mail.gmx.net ([213.165.64.20]:54270) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1N4i3W-0002xZ-Sw for emacs-orgmode@gnu.org; Sun, 01 Nov 2009 16:33:47 -0500 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: andrea Crotti Cc: emacs-orgmode@gnu.org Am Sonntag, den 25.10.2009, 15:00 +0000 schrieb andrea Crotti: > When I export to html and there is source code inside sometimes I get unreadable > characters,that's because the color is very light and on a white background it > disappears. > > How could I solve it? > Wouldn't be possible to export keeping the emacs theme (like htmlize does) > for example? It seems you use a dark background color in emacs? If so, just adjust the CSS style `background-color' for your
 tags
like this:


pre, code.pre
{
  background-color:black; /* or #333333 ... */
  /* ... more styles here ... */
}


Sebastian