| 181 | |
| 182 | |
| 183 | class DefaultTheme(AnsiColorTheme): |
| 184 | style_normal = Color.normal |
| 185 | style_prompt = Color.blue + Color.bold |
| 186 | style_punct = Color.normal |
| 187 | style_id = Color.blue + Color.bold |
| 188 | style_not_printable = Color.white |
| 189 | style_depreciate_field_name = Color.grey |
| 190 | style_layer_name = Color.red + Color.bold |
| 191 | style_field_name = Color.blue |
| 192 | style_field_value = Color.purple |
| 193 | style_emph_field_name = Color.blue + Color.uline + Color.bold |
| 194 | style_emph_field_value = Color.purple + Color.uline + Color.bold |
| 195 | style_packetlist_name = Color.red + Color.bold |
| 196 | style_packetlist_proto = Color.blue |
| 197 | style_packetlist_value = Color.purple |
| 198 | style_fail = Color.red + Color.bold |
| 199 | style_success = Color.blue + Color.bold |
| 200 | style_even = Color.black + Color.bold |
| 201 | style_odd = Color.black |
| 202 | style_opening = Color.yellow |
| 203 | style_active = Color.black |
| 204 | style_closed = Color.white |
| 205 | style_left = Color.blue + Color.invert |
| 206 | style_right = Color.red + Color.invert |
| 207 | style_logo = Color.green + Color.bold |
| 208 | |
| 209 | |
| 210 | class BrightTheme(AnsiColorTheme): |
no outgoing calls
no test coverage detected
searching dependent graphs…