cde2e92378
* Added new CSS class for handling reverse video with default terminal colors. For colors given with value 0-255 background and foreground values are just switched. * New CSS classes were also added to Black On White and White On Black color themes.
16 lines
250 B
CSS
16 lines
250 B
CSS
#vt100 .ansiDefR {
|
|
color: #ffffff;
|
|
}
|
|
|
|
#vt100 .bgAnsiDefR {
|
|
background-color: #000000;
|
|
}
|
|
|
|
#vt100 #scrollable.inverted .ansiDefR {
|
|
color: #000000;
|
|
}
|
|
|
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
|
background-color: #ffffff;
|
|
}
|
|
|