File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/main/java/org/fusesource/jansi Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,7 @@ public enum Code {
172172 MAGENTA (Color .MAGENTA ),
173173 CYAN (Color .CYAN ),
174174 WHITE (Color .WHITE ),
175+ DEFAULT (Color .DEFAULT ),
175176
176177 // Foreground Colors
177178 FG_BLACK (Color .BLACK , false ),
@@ -182,6 +183,7 @@ public enum Code {
182183 FG_MAGENTA (Color .MAGENTA , false ),
183184 FG_CYAN (Color .CYAN , false ),
184185 FG_WHITE (Color .WHITE , false ),
186+ FG_DEFAULT (Color .DEFAULT , false ),
185187
186188 // Background Colors
187189 BG_BLACK (Color .BLACK , true ),
@@ -192,6 +194,7 @@ public enum Code {
192194 BG_MAGENTA (Color .MAGENTA , true ),
193195 BG_CYAN (Color .CYAN , true ),
194196 BG_WHITE (Color .WHITE , true ),
197+ BG_DEFAULT (Color .DEFAULT , true ),
195198
196199 // Attributes
197200 RESET (Attribute .RESET ),
You can’t perform that action at this time.
0 commit comments