|
40 | 40 | "magenta": Style(color="magenta"), |
41 | 41 | "cyan": Style(color="cyan"), |
42 | 42 | "white": Style(color="white"), |
| 43 | + "logging.keyword": Style(bold=True, color="yellow"), |
| 44 | + "logging.level.notset": Style(dim=True), |
| 45 | + "logging.level.debug": Style(color="green"), |
| 46 | + "logging.level.info": Style(color="blue"), |
| 47 | + "logging.level.warning": Style(color="red"), |
| 48 | + "logging.level.error": Style(color="red", bold=True), |
| 49 | + "logging.level.critical": Style(color="red", bold=True, reverse=True), |
| 50 | + "log.level": Style(), |
43 | 51 | "log.time": Style(color="cyan", dim=True), |
44 | 52 | "log.message": Style(), |
45 | 53 | "log.path": Style(dim=True), |
46 | | - "repr.str": Style(color="green", italic=False), |
| 54 | + "repr.str": Style(color="green", italic=False, bold=False), |
47 | 55 | "repr.brace": Style(bold=True), |
48 | 56 | "repr.tag_start": Style(bold=True), |
49 | | - "repr.tag_name": Style(color="bright_magenta"), |
50 | | - "repr.tag_contents": Style(color="default", italic=True), |
| 57 | + "repr.tag_name": Style(color="bright_magenta", bold=True), |
| 58 | + "repr.tag_contents": Style(color="default"), |
51 | 59 | "repr.tag_end": Style(bold=True), |
52 | 60 | "repr.attrib_name": Style(color="yellow", italic=True), |
53 | 61 | "repr.attrib_equal": Style(bold=True), |
|
56 | 64 | "repr.bool_true": Style(color="bright_green", italic=True), |
57 | 65 | "repr.bool_false": Style(color="bright_red", italic=True), |
58 | 66 | "repr.none": Style(color="magenta", italic=True), |
59 | | - "repr.url": Style(underline=True, color="default"), |
| 67 | + "repr.url": Style(underline=True, color="bright_blue", bold=False), |
60 | 68 | "rule.line": Style(color="green"), |
61 | 69 | "rule.text": Style(), |
| 70 | + "repr.path": Style(color="magenta"), |
| 71 | + "repr.filename": Style(color="bright_magenta", bold=True), |
62 | 72 | "table.header": Style(bold=True), |
63 | 73 | "table.footer": Style(bold=True), |
64 | 74 | "table.cell": Style(), |
|
0 commit comments