You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
from rich.theme import Theme
|
|
|
|
solarized_theme = Theme({
|
|
"base03": "bright_black",
|
|
"base02": "black",
|
|
"base01": "bright_green",
|
|
"base00": "bright_yellow",
|
|
"base0": "bright_blue",
|
|
"base1": "bright_cyan",
|
|
"base2": "white",
|
|
"base3": "bright_white",
|
|
"orange": "bright_red",
|
|
"violet": "bright_magenta",
|
|
"red": "red",
|
|
"bold red": "bold red",
|
|
"underline base03": "underline bright_black",
|
|
"underline base02": "underline black",
|
|
"underline base01": "underline bright_green",
|
|
"underline base00": "underline bright_yellow",
|
|
"underline base0": "underline bright_blue",
|
|
"underline base1": "underline bright_cyan",
|
|
"underline base2": "underline white",
|
|
"underline base3": "underline bright_white",
|
|
"underline orange": "bright_red underline",
|
|
"underline violet": "bright_magenta underline",
|
|
"bold base03": "bold bright_black",
|
|
"bold base02": "bold black",
|
|
"bold base01": "bold bright_green",
|
|
"bold base00": "bold bright_yellow",
|
|
"bold base0": "bold bright_blue",
|
|
"bold base1": "bold bright_cyan",
|
|
"bold base2": "bold white",
|
|
"bold base3": "bold bright_white",
|
|
"bold orange": "bright_red bold",
|
|
"bold violet": "bright_magenta bold",
|
|
})
|
|
|