-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathstyles.py
More file actions
70 lines (53 loc) · 2.7 KB
/
styles.py
File metadata and controls
70 lines (53 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""Defines custom Rich styles and their corresponding names for cmd2.
This module provides a centralized and discoverable way to manage Rich styles
used within the cmd2 framework. It defines a StrEnum for style names and a
dictionary that maps these names to their default style objects.
**Notes**
Cmd2 uses Rich for its terminal output, and while this module defines a set of
cmd2-specific styles, it's important to understand that these aren't the only
styles that can appear. Components like Rich tracebacks and the rich-argparse
library, which cmd2 uses for its help output, also apply their own built-in
styles. Additionally, app developers may use other Rich objects that have
their own default styles.
For a complete theming experience, you can create a custom theme that includes
styles from Rich and rich-argparse. The `cmd2.rich_utils.set_theme()` function
automatically updates rich-argparse's styles with any custom styles provided in
your theme dictionary, so you don't have to modify them directly.
You can find Rich's default styles in the `rich.default_styles` module.
For rich-argparse, the style names are defined in the
`rich_argparse.RichHelpFormatter.styles` dictionary.
"""
import sys
from rich.style import (
Style,
StyleType,
)
if sys.version_info >= (3, 11):
from enum import StrEnum
else:
from backports.strenum import StrEnum
from .colors import Color
class Cmd2Style(StrEnum):
"""An enumeration of the names of custom Rich styles used in cmd2.
Using this enum allows for autocompletion and prevents typos when
referencing cmd2-specific styles.
This StrEnum is tightly coupled with `DEFAULT_CMD2_STYLES`. Any name
added here must have a corresponding style definition there.
"""
COMMAND_LINE = "cmd2.example" # Command line examples in help text
ERROR = "cmd2.error" # Error text (used by perror())
HELP_HEADER = "cmd2.help.header" # Help table header text
HELP_LEADER = "cmd2.help.leader" # Text right before the help tables are listed
SUCCESS = "cmd2.success" # Success text (used by psuccess())
TABLE_BORDER = "cmd2.table_border" # Applied to cmd2's table borders
WARNING = "cmd2.warning" # Warning text (used by pwarning())
# Default styles used by cmd2. Tightly coupled with the Cmd2Style enum.
DEFAULT_CMD2_STYLES: dict[str, StyleType] = {
Cmd2Style.COMMAND_LINE: Style(color=Color.CYAN, bold=True),
Cmd2Style.ERROR: Style(color=Color.BRIGHT_RED),
Cmd2Style.HELP_HEADER: Style(color=Color.BRIGHT_GREEN),
Cmd2Style.HELP_LEADER: Style(color=Color.CYAN),
Cmd2Style.SUCCESS: Style(color=Color.GREEN),
Cmd2Style.TABLE_BORDER: Style(color=Color.BRIGHT_GREEN),
Cmd2Style.WARNING: Style(color=Color.BRIGHT_YELLOW),
}