Change colors of HTML message bubble.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48563 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Rewrite/HTMLRewrite.cpp b/lib/Rewrite/HTMLRewrite.cpp
index 7f408c7..76c44b7 100644
--- a/lib/Rewrite/HTMLRewrite.cpp
+++ b/lib/Rewrite/HTMLRewrite.cpp
@@ -136,7 +136,8 @@
     std::ostringstream os;
     
     os << "<html>\n<head>\n"
-       << "<style type=\"text/css\">\n"    
+       << "<style type=\"text/css\">\n"
+       << " body { color:#000000; background-color:#ffffff }\n"
        << " .code { border-spacing:0px; width:100%; }\n"
        << " .code { font-family: \"Andale Mono\", fixed; font-size:10pt }\n"
        << " .code { line-height: 1.2em }\n"
@@ -144,11 +145,13 @@
        << " .num { text-align:right; font-size: smaller }\n"
        << " .line { padding-left: 1ex; border-left: 3px solid #ccc }\n"
        << " .line { white-space: pre }\n"
-       << " .msg { background-color:#fcff4c }\n"
+       << " .msg { background-color:#ff8000; color:#000000 }\n"
+       << " .msg { border: solid 1px #944a00 }\n"
        << " .msg { font-family:Helvetica, sans-serif; font-size: smaller }\n"
        << " .msg { font-weight: bold }\n"
        << " .msg { float:left }\n"
-       << " .msg { padding:5px; margin-top:10px; margin-bottom:10px }\n"
+       << " .msg { padding:0.5em 1ex 0.5em 1ex }\n"
+       << " .msg { margin-top:10px; margin-bottom:10px }\n"
        << "</style>\n</head>\n<body>";
     
     R.InsertStrBefore(StartLoc, os.str());