/usr/lib/python3/dist-packages/pudb/theme.py is in python3-pudb 2015.4.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 | THEMES = ["classic", "vim", "dark vim", "midnight", "solarized", "agr-256"]
from pudb.py3compat import execfile, raw_input
import urwid
def get_palette(may_use_fancy_formats, theme="classic"):
if may_use_fancy_formats:
def add_setting(color, setting):
return color+","+setting
else:
def add_setting(color, setting):
return color
palette_dict = { # {{{ ui
"header": ("black", "light gray", "standout"),
"selectable": ("black", "dark cyan"),
"focused selectable": ("black", "dark green"),
"button": (add_setting("white", "bold"), "dark blue"),
"focused button": ("light cyan", "black"),
"dialog title": (add_setting("white", "bold"), "dark cyan"),
"background": ("black", "light gray"),
"hotkey": (add_setting("black", "underline"), "light gray", "underline"),
"focused sidebar": (add_setting("yellow", "bold"), "light gray", "standout"),
"warning": (add_setting("white", "bold"), "dark red", "standout"),
"label": ("black", "light gray"),
"value": (add_setting("yellow", "bold"), "dark blue"),
"fixed value": ("light gray", "dark blue"),
"group head": (add_setting("dark blue", "bold"), "light gray"),
"search box": ("black", "dark cyan"),
"search not found": ("white", "dark red"),
# }}}
# {{{ shell
"command line edit": (add_setting("yellow", "bold"), "dark blue"),
"command line prompt": (add_setting("white", "bold"), "dark blue"),
"command line output": ("light cyan", "dark blue"),
"command line input": (add_setting("light cyan", "bold"), "dark blue"),
"command line error": (add_setting("light red", "bold"), "dark blue"),
"focused command line output": ("black", "dark green"),
"focused command line input": (add_setting("light cyan", "bold"), "dark green"),
"focused command line error": ("black", "dark green"),
"command line clear button": (add_setting("white", "bold"), "dark blue"),
"command line focused button": ("light cyan", "black"),
# }}}
# {{{ source
"breakpoint": ("black", "dark cyan"),
"focused breakpoint": ("black", "dark green"),
"current breakpoint": (add_setting("white", "bold"), "dark cyan"),
"focused current breakpoint": (add_setting("white", "bold"), "dark green", "bold"),
"source": (add_setting("yellow", "bold"), "dark blue"),
"focused source": ("black", "dark green"),
"highlighted source": ("black", "dark magenta"),
"current source": ("black", "dark cyan"),
"current focused source": (add_setting("white", "bold"), "dark cyan"),
"current highlighted source": ("white", "dark cyan"),
# {{{ highlighting
"line number": ("light gray", "dark blue"),
"keyword": (add_setting("white", "bold"), "dark blue"),
"name": ("light cyan", "dark blue"),
"literal": ("light magenta, bold", "dark blue"),
"string": (add_setting("light magenta", "bold"), "dark blue"),
"doublestring": (add_setting("light magenta", "bold"), "dark blue"),
"singlestring": (add_setting("light magenta", "bold"), "dark blue"),
"docstring": (add_setting("light magenta", "bold"), "dark blue"),
"punctuation": ("light gray", "dark blue"),
"comment": ("light gray", "dark blue"),
# }}}
# }}}
# {{{ breakpoints
"breakpoint marker": ("dark red", "dark blue"),
"breakpoint source": (add_setting("yellow", "bold"), "dark red"),
"breakpoint focused source": ("black", "dark red"),
"current breakpoint source": ("black", "dark red"),
"current breakpoint focused source": ("white", "dark red"),
# }}}
# {{{ variables view
"variables": ("black", "dark cyan"),
"variable separator": ("dark cyan", "light gray"),
"var label": ("dark blue", "dark cyan"),
"var value": ("black", "dark cyan"),
"focused var label": ("dark blue", "dark green"),
"focused var value": ("black", "dark green"),
"highlighted var label": ("white", "dark cyan"),
"highlighted var value": ("black", "dark cyan"),
"focused highlighted var label": ("white", "dark green"),
"focused highlighted var value": ("black", "dark green"),
"return label": ("white", "dark blue"),
"return value": ("black", "dark cyan"),
"focused return label": ("light gray", "dark blue"),
"focused return value": ("black", "dark green"),
# }}}
# {{{ stack
"stack": ("black", "dark cyan"),
"frame name": ("black", "dark cyan"),
"focused frame name": ("black", "dark green"),
"frame class": ("dark blue", "dark cyan"),
"focused frame class": ("dark blue", "dark green"),
"frame location": ("light cyan", "dark cyan"),
"focused frame location": ("light cyan", "dark green"),
"current frame name": (add_setting("white", "bold"),
"dark cyan"),
"focused current frame name": (add_setting("white", "bold"),
"dark green", "bold"),
"current frame class": ("dark blue", "dark cyan"),
"focused current frame class": ("dark blue", "dark green"),
"current frame location": ("light cyan", "dark cyan"),
"focused current frame location": ("light cyan", "dark green"),
# }}}
}
if theme == "classic":
pass
elif theme == "vim":
# {{{ vim theme
palette_dict.update({
"source": ("black", "default"),
"keyword": ("brown", "default"),
"kw_namespace": ("dark magenta", "default"),
"literal": ("black", "default"),
"string": ("dark red", "default"),
"doublestring": ("dark red", "default"),
"singlestring": ("dark red", "default"),
"docstring": ("dark red", "default"),
"punctuation": ("black", "default"),
"comment": ("dark blue", "default"),
"classname": ("dark cyan", "default"),
"name": ("dark cyan", "default"),
"line number": ("dark gray", "default"),
"breakpoint marker": ("dark red", "default"),
# {{{ shell
"command line edit":
("black", "default"),
"command line prompt":
(add_setting("black", "bold"), "default"),
"command line output":
(add_setting("black", "bold"), "default"),
"command line input":
("black", "default"),
"command line error":
(add_setting("light red", "bold"), "default"),
"focused command line output":
("black", "dark green"),
"focused command line input":
(add_setting("light cyan", "bold"), "dark green"),
"focused command line error":
("black", "dark green"),
# }}}
})
# }}}
elif theme == "dark vim":
# {{{ dark vim
palette_dict.update({
"header": ("black", "light gray", "standout"),
# {{{ variables view
"variables": ("black", "dark gray"),
"variable separator": ("dark cyan", "light gray"),
"var label": ("light gray", "dark gray"),
"var value": ("white", "dark gray"),
"focused var label": ("light gray", "light blue"),
"focused var value": ("white", "light blue"),
"highlighted var label": ("light gray", "dark green"),
"highlighted var value": ("white", "dark green"),
"focused highlighted var label": ("light gray", "light blue"),
"focused highlighted var value": ("white", "light blue"),
"return label": ("light gray", "dark gray"),
"return value": ("light cyan", "dark gray"),
"focused return label": ("yellow", "light blue"),
"focused return value": ("white", "light blue"),
# }}}
# {{{ stack view
"stack": ("black", "dark gray"),
"frame name": ("light gray", "dark gray"),
"focused frame name": ("light gray", "light blue"),
"frame class": ("dark blue", "dark gray"),
"focused frame class": ("dark blue", "light blue"),
"frame location": ("white", "dark gray"),
"focused frame location": ("white", "light blue"),
"current frame name": (add_setting("white", "bold"),
"dark gray"),
"focused current frame name": (add_setting("white", "bold"),
"light blue", "bold"),
"current frame class": ("dark blue", "dark gray"),
"focused current frame class": ("dark blue", "dark green"),
"current frame location": ("light cyan", "dark gray"),
"focused current frame location": ("light cyan", "light blue"),
# }}}
# {{{ breakpoint view
"breakpoint": ("light gray", "dark gray"),
"focused breakpoint": ("light gray", "light blue"),
"current breakpoint": (add_setting("white", "bold"), "dark gray"),
"focused current breakpoint":
(add_setting("white", "bold"), "light blue"),
# }}}
# {{{ ui widgets
"selectable": ("light gray", "dark gray"),
"focused selectable": ("white", "light blue"),
"button": ("light gray", "dark gray"),
"focused button": ("white", "light blue"),
"background": ("black", "light gray"),
"hotkey": (add_setting("black", "underline"), "light gray", "underline"),
"focused sidebar": ("light blue", "light gray", "standout"),
"warning": (add_setting("white", "bold"), "dark red", "standout"),
"label": ("black", "light gray"),
"value": ("white", "dark gray"),
"fixed value": ("light gray", "dark gray"),
"search box": ("white", "dark gray"),
"search not found": ("white", "dark red"),
"dialog title": (add_setting("white", "bold"), "dark gray"),
# }}}
# {{{ source view
"breakpoint marker": ("dark red", "black"),
"breakpoint source": ("light gray", "dark red"),
"breakpoint focused source": ("black", "dark red"),
"current breakpoint source": ("black", "dark red"),
"current breakpoint focused source": ("white", "dark red"),
# }}}
# {{{ highlighting
"source": ("white", "black"),
"focused source": ("white", "light blue"),
"highlighted source": ("black", "dark magenta"),
"current source": ("black", "light gray"),
"current focused source": ("white", "dark cyan"),
"current highlighted source": ("white", "dark cyan"),
"line number": ("dark gray", "black"),
"keyword": ("yellow", "black"),
"literal": ("dark magenta", "black"),
"string": ("dark magenta", "black"),
"doublestring": ("dark magenta", "black"),
"singlestring": ("dark magenta", "black"),
"docstring": ("dark magenta", "black"),
"name": ("light cyan", "black"),
"punctuation": ("yellow", "black"),
"comment": ("light blue", "black"),
# }}}
# {{{ shell
"command line edit":
("white", "black"),
"command line prompt":
(add_setting("yellow", "bold"), "black"),
"command line output":
(add_setting("yellow", "bold"), "black"),
"command line input":
("white", "black"),
"command line error":
(add_setting("light red", "bold"), "black"),
"focused command line output":
("black", "light blue"),
"focused command line input":
(add_setting("light cyan", "bold"), "light blue"),
"focused command line error":
("black", "light blue"),
# }}}
})
# }}}
elif theme == "midnight":
# {{{ midnight
# Based on XCode's midnight theme
# Looks best in a console with green text against black background
palette_dict.update({
"variables": ("white", "default"),
"var label": ("light blue", "default"),
"var value": ("white", "default"),
"stack": ("white", "default"),
"frame name": ("white", "default"),
"frame class": ("dark blue", "default"),
"frame location": ("light cyan", "default"),
"current frame name": (add_setting("white", "bold"), "default"),
"current frame class": ("dark blue", "default"),
"current frame location": ("light cyan", "default"),
"focused frame name": ("black", "dark green"),
"focused frame class": (add_setting("white", "bold"), "dark green"),
"focused frame location": ("dark blue", "dark green"),
"focused current frame name": ("black", "dark green"),
"focused current frame class": (add_setting("white", "bold"), "dark green"),
"focused current frame location": ("dark blue", "dark green"),
"breakpoint": ("default", "default"),
"search box": ("default", "default"),
"source": ("white", "default"),
"highlighted source": ("white", "light cyan"),
"current source": ("white", "light gray"),
"current focused source": ("white", "brown"),
"line number": ("light gray", "default"),
"keyword": ("dark magenta", "default"),
"name": ("white", "default"),
"literal": ("dark cyan", "default"),
"string": ("dark red", "default"),
"doublestring": ("dark red", "default"),
"singlestring": ("light blue", "default"),
"docstring": ("light red", "default"),
"backtick": ("light green", "default"),
"punctuation": ("white", "default"),
"comment": ("dark green", "default"),
"classname": ("dark cyan", "default"),
"funcname": ("white", "default"),
"breakpoint marker": ("dark red", "default"),
# {{{ shell
"command line edit": ("white", "default"),
"command line prompt": (add_setting("white", "bold"), "default"),
"command line output": (add_setting("white", "bold"), "default"),
"command line input": (add_setting("white", "bold"), "default"),
"command line error": (add_setting("light red", "bold"), "default"),
"focused command line output": ("black", "dark green"),
"focused command line input": (add_setting("white", "bold"), "dark green"),
"focused command line error": ("black", "dark green"),
"command line clear button": (add_setting("white", "bold"), "default"),
"command line focused button": ("black", "light gray"), # White
# doesn't work in curses mode
# }}}
})
# }}}
elif theme == "solarized":
# {{{ solarized
palette_dict.update({
# UI
"header": ("black", "light blue", "standout"),
"focused sidebar": ("yellow", "light blue", "standout"),
"group head": ("black", "light blue"),
"background": ("black", "light blue"),
"label": ("black", "light blue"),
"value": ("white", "dark blue"),
"fixed value": ("black", "light blue"),
"variables": ("light blue", "default"),
"var label": ("dark blue", "default"),
"var value": ("light blue", "default"),
"focused var label": ("white", "dark blue"),
"focused var value": ("black", "dark blue"),
"highlighted var label": ("white", "light green"),
"highlighted var value": ("white", "light green"),
"focused highlighted var label": ("white", "light green"),
"focused highlighted var value": ("white", "light green"),
"stack": ("light blue", "default"),
"frame name": ("dark blue", "default"),
"frame class": ("light blue", "default"),
"frame location": ("light green", "default"),
"focused frame name": ("white", "dark blue"),
"focused frame class": ("black", "dark blue"),
"focused frame location": ("dark gray", "dark blue"),
"focused current frame name": ("white", "light green"),
"focused current frame class": ("black", "light green"),
"focused current frame location": ("dark gray", "light green"),
"current frame name": ("white", "light green"),
"current frame class": ("black", "light green"),
"current frame location": ("dark gray", "light green"),
# breakpoints
"breakpoint": ("light blue", "default"),
"focused breakpoint": ("white", "light green"),
"current breakpoint": ("white", "dark blue"),
"focused current breakpoint": ("white", "dark blue"),
# source
"breakpoint source": ("light blue", "black"),
"current breakpoint source": ("black", "light green"),
"breakpoint focused source": ("dark gray", "dark blue"),
"current breakpoint focused source": ("black", "light green"),
"breakpoint marker": ("dark red", "default"),
"search box": ("default", "default"),
"source": ("light blue", "default"),
"current source": ("light gray", "light blue"),
"current focused source": ("light gray", "light blue"),
"focused source": ("dark gray", "dark blue"),
"current highlighted source": ("black", "dark cyan"),
"highlighted source": ("light blue", "black"),
"line number": ("light blue", "default"),
"keyword": ("dark green", "default"),
"name": ("light blue", "default"),
"literal": ("dark cyan", "default"),
"string": ("dark cyan", "default"),
"doublestring": ("dark cyan", "default"),
"singlestring": ("light blue", "default"),
"docstring": ("dark cyan", "default"),
"backtick": ("light green", "default"),
"punctuation": ("light blue", "default"),
"comment": ("light green", "default"),
"classname": ("dark blue", "default"),
"funcname": ("dark blue", "default"),
# shell
"command line edit": ("light blue", "default"),
"command line prompt": ("light blue", "default"),
"command line output": ("light blue", "default"),
"command line input": ("light blue", "default"),
"command line error": ("dark red", "default"),
"focused command line output": ("black", "light green"),
"focused command line input": ("black", "light green"),
"focused command line error": ("dark red", "light blue"),
"command line clear button": ("light blue", "default"),
"command line focused button": ("black", "light blue"),
})
# }}}
elif theme == "agr-256":
# {{{ agr-256
palette_dict.update({
"header": ("h235", "h252", "standout"),
# {{{ variables view
"variables": ("h235", "h233"),
"variable separator": ("h23", "h252"),
"var label": ("h111", "h233"),
"var value": ("h255", "h233"),
"focused var label": ("h192", "h24"),
"focused var value": ("h192", "h24"),
"highlighted var label": ("h252", "h22"),
"highlighted var value": ("h255", "h22"),
"focused highlighted var label": ("h252", "h64"),
"focused highlighted var value": ("h255", "h64"),
"return label": ("h113", "h233"),
"return value": ("h113", "h233"),
"focused return label": (add_setting("h192", "bold"), "h24"),
"focused return value": ("h192", "h24"),
# }}}
# {{{ stack view
"stack": ("h235", "h233"),
"frame name": ("h192", "h233"),
"focused frame name": ("h192", "h24"),
"frame class": ("h111", "h233"),
"focused frame class": ("h192", "h24"),
"frame location": ("h252", "h233"),
"focused frame location": ("h192", "h24"),
"current frame name": ("h255", "h22"),
"focused current frame name": ("h255", "h64"),
"current frame class": ("h111", "h22"),
"focused current frame class": ("h255", "h64"),
"current frame location": ("h252", "h22"),
"focused current frame location": ("h255", "h64"),
# }}}
# {{{ breakpoint view
"breakpoint": ("h80", "h233"),
"focused breakpoint": ("h192", "h24"),
"current breakpoint": (add_setting("h255", "bold"), "h22"),
"focused current breakpoint": (add_setting("h255", "bold"), "h64"),
# }}}
# {{{ ui widgets
"selectable": ("h252", "h235"),
"focused selectable": ("h255", "h24"),
"button": ("h252", "h235"),
"focused button": ("h255", "h24"),
"background": ("h235", "h252"),
"hotkey": (add_setting("h235", "underline"), "h252", "underline"),
"focused sidebar": ("h23", "h252", "standout"),
"warning": (add_setting("h255", "bold"), "h124", "standout"),
"label": ("h235", "h252"),
"value": ("h255", "h17"),
"fixed value": ("h252", "h17"),
"group head": (add_setting("h25", "bold"), "h252"),
"search box": ("h255", "h235"),
"search not found": ("h255", "h124"),
"dialog title": (add_setting("h255", "bold"), "h235"),
# }}}
# {{{ source view
"breakpoint marker": ("h160", "h235"),
"breakpoint source": ("h252", "h124"),
"breakpoint focused source": ("h192", "h124"),
"current breakpoint source": ("h192", "h124"),
"current breakpoint focused source": (add_setting("h192", "bold"), "h124"),
# }}}
# {{{ highlighting
"source": ("h255", "h235"),
"focused source": ("h192", "h24"),
"highlighted source": ("h252", "h22"),
"current source": (add_setting("h252", "bold"), "h23"),
"current focused source": (add_setting("h192", "bold"), "h23"),
"current highlighted source": ("h255", "h22"),
"line number": ("h241", "h235"),
"keyword": ("h111", "h235"),
"literal": ("h173", "h235"),
"string": ("h113", "h235"),
"doublestring": ("h113", "h235"),
"singlestring": ("h113", "h235"),
"docstring": ("h113", "h235"),
"name": ("h192", "h235"),
"punctuation": ("h223", "h235"),
"comment": ("h246", "h235"),
# }}}
# {{{ shell
"command line edit": ("h255", "h233"),
"command line prompt": (add_setting("h192", "bold"), "h233"),
"command line output": ("h80", "h233"),
"command line input": ("h255", "h233"),
"command line error": ("h160", "h233"),
"focused command line output": (add_setting("h192", "bold"), "h24"),
"focused command line input": ("h255", "h24"),
"focused command line error": ("h235", "h24"),
"command line clear button": (add_setting("h255", "bold"), "h233"),
"command line focused button": ("h255", "h24"),
# }}}
})
# }}}
else:
try:
symbols = {
"palette": palette_dict,
"add_setting": add_setting,
}
from os.path import expanduser, expandvars
execfile(expanduser(expandvars(theme)), symbols)
except:
print("Error when importing theme:")
from traceback import print_exc
print_exc()
raw_input("Hit enter:")
palette_list = []
for setting_name, color_values in palette_dict.items():
fg_color = color_values[0].lower().strip()
bg_color = color_values[1].lower().strip()
# Convert hNNN syntax to equivalent #RGB value
# (https://github.com/wardi/urwid/issues/24)
if fg_color.startswith('h') or bg_color.startswith('h'):
attr = urwid.AttrSpec(fg_color, bg_color, colors=256)
palette_list.append((setting_name, 'default', 'default', 'default',
attr.foreground,
attr.background))
else:
palette_list.append((setting_name,) + color_values)
return palette_list
# vim: foldmethod=marker
|