command state color: use PG 4.0 values;
authorwenzelm
Sun, 28 Dec 2008 19:37:51 +0100
changeset 34448 39cb4ed5183b
parent 34447 dc8b486fde9f
child 34449 57fce8528a22
command state color: use PG 4.0 values;
src/Tools/jEdit/src/jedit/TheoryView.scala
--- a/src/Tools/jEdit/src/jedit/TheoryView.scala	Sun Dec 28 19:26:18 2008 +0100
+++ b/src/Tools/jEdit/src/jedit/TheoryView.scala	Sun Dec 28 19:37:51 2008 +0100
@@ -28,12 +28,11 @@
 object TheoryView {
 
   def choose_color(state: Command): Color = {
-    if (state == null)
-      Color.red
+    if (state == null) Color.red
     else
       state.phase match {
-        case Phase.UNPROCESSED => new Color(255, 255, 192)
-        case Phase.FINISHED => new Color(192, 255, 192)
+        case Phase.UNPROCESSED => new Color(255, 228, 225)
+        case Phase.FINISHED => new Color(234, 248, 255)
         case Phase.FAILED => new Color(255, 192, 192)
         case _ => Color.red
       }