##// END OF EJS Templates
Fix color schemes in Linux...
Tayfun Sen -
Show More
@@ -88,11 +88,12 b' NoColor = ColorScheme('
88 88 'in_prompt' : InputTermColors.NoColor, # Input prompt
89 89 'in_number' : InputTermColors.NoColor, # Input prompt number
90 90 'in_prompt2' : InputTermColors.NoColor, # Continuation prompt
91 'in_normal' : InputTermColors.NoColor, # color off (usu. Colors.Normal)
91 92
92 'out_prompt' : InputTermColors.NoColor, # Output prompt
93 'out_number' : InputTermColors.NoColor, # Output prompt number
93 'out_prompt' : Colors.NoColor, # Output prompt
94 'out_number' : Colors.NoColor, # Output prompt number
94 95
95 'normal' : InputTermColors.NoColor # color off (usu. Colors.Normal)
96 'normal' : Colors.NoColor # color off (usu. Colors.Normal)
96 97 } )
97 98
98 99 LinuxColors = ColorScheme(
@@ -111,11 +112,12 b' LinuxColors = ColorScheme('
111 112 'in_prompt' : InputTermColors.Green,
112 113 'in_number' : InputTermColors.LightGreen,
113 114 'in_prompt2' : InputTermColors.Green,
115 'in_normal' : InputTermColors.Normal, # color off (usu. Colors.Normal)
114 116
115 'out_prompt' : InputTermColors.Red,
116 'out_number' : InputTermColors.LightRed,
117 'out_prompt' : Colors.Red,
118 'out_number' : Colors.LightRed,
117 119
118 'normal' : InputTermColors.Normal # color off (usu. Colors.Normal)
120 'normal' : Colors.Normal # color off (usu. Colors.Normal)
119 121 } )
120 122
121 123 LightBGColors = ColorScheme(
@@ -134,11 +136,12 b' LightBGColors = ColorScheme('
134 136 'in_prompt' : InputTermColors.Blue,
135 137 'in_number' : InputTermColors.LightBlue,
136 138 'in_prompt2' : InputTermColors.Blue,
139 'in_normal' : InputTermColors.Normal, # color off (usu. Colors.Normal)
137 140
138 'out_prompt' : InputTermColors.Red,
139 'out_number' : InputTermColors.LightRed,
141 'out_prompt' : Colors.Red,
142 'out_number' : Colors.LightRed,
140 143
141 'normal' : InputTermColors.Normal # color off (usu. Colors.Normal)
144 'normal' : Colors.Normal # color off (usu. Colors.Normal)
142 145 } )
143 146
144 147 # Build table of color schemes (needed by the parser)
General Comments 0
You need to be logged in to leave comments. Login now