inspect-ai 0.3.55__py3-none-any.whl → 0.3.56__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. inspect_ai/__init__.py +1 -0
  2. inspect_ai/_cli/common.py +1 -1
  3. inspect_ai/_cli/trace.py +33 -20
  4. inspect_ai/_display/core/active.py +1 -1
  5. inspect_ai/_display/core/display.py +1 -1
  6. inspect_ai/_display/core/footer.py +1 -1
  7. inspect_ai/_display/core/progress.py +0 -6
  8. inspect_ai/_display/core/rich.py +1 -1
  9. inspect_ai/_display/rich/display.py +2 -2
  10. inspect_ai/_display/textual/app.py +15 -17
  11. inspect_ai/_display/textual/widgets/clock.py +3 -3
  12. inspect_ai/_display/textual/widgets/samples.py +6 -13
  13. inspect_ai/_eval/context.py +9 -1
  14. inspect_ai/_eval/score.py +4 -10
  15. inspect_ai/_eval/task/results.py +5 -4
  16. inspect_ai/_eval/task/run.py +6 -12
  17. inspect_ai/_eval/task/task.py +10 -0
  18. inspect_ai/_util/ansi.py +31 -0
  19. inspect_ai/_util/format.py +7 -0
  20. inspect_ai/_util/logger.py +12 -12
  21. inspect_ai/_util/throttle.py +10 -1
  22. inspect_ai/_util/trace.py +43 -47
  23. inspect_ai/_util/transcript.py +4 -0
  24. inspect_ai/_util/vscode.py +51 -0
  25. inspect_ai/_view/notify.py +2 -1
  26. inspect_ai/_view/www/App.css +22 -1
  27. inspect_ai/_view/www/dist/assets/index.css +2374 -2
  28. inspect_ai/_view/www/dist/assets/index.js +29622 -24424
  29. inspect_ai/_view/www/log-schema.json +138 -90
  30. inspect_ai/_view/www/package.json +1 -0
  31. inspect_ai/_view/www/src/App.mjs +1 -0
  32. inspect_ai/_view/www/src/appearance/Icons.mjs +2 -0
  33. inspect_ai/_view/www/src/components/AsciiCinemaPlayer.mjs +74 -0
  34. inspect_ai/_view/www/src/components/CopyButton.mjs +0 -1
  35. inspect_ai/_view/www/src/components/HumanBaselineView.mjs +168 -0
  36. inspect_ai/_view/www/src/components/LightboxCarousel.mjs +217 -0
  37. inspect_ai/_view/www/src/components/Tools.mjs +11 -3
  38. inspect_ai/_view/www/src/samples/transcript/ModelEventView.mjs +3 -2
  39. inspect_ai/_view/www/src/samples/transcript/TranscriptView.mjs +1 -0
  40. inspect_ai/_view/www/src/samples/transcript/state/StateEventRenderers.mjs +56 -0
  41. inspect_ai/_view/www/src/samples/transcript/state/StateEventView.mjs +17 -5
  42. inspect_ai/_view/www/src/types/asciicinema-player.d.ts +26 -0
  43. inspect_ai/_view/www/src/types/log.d.ts +26 -12
  44. inspect_ai/_view/www/yarn.lock +44 -0
  45. inspect_ai/approval/_apply.py +4 -0
  46. inspect_ai/approval/_human/panel.py +5 -8
  47. inspect_ai/dataset/_dataset.py +51 -10
  48. inspect_ai/dataset/_util.py +31 -3
  49. inspect_ai/log/__init__.py +2 -0
  50. inspect_ai/log/_log.py +5 -2
  51. inspect_ai/model/_call_tools.py +4 -2
  52. inspect_ai/model/_chat_message.py +3 -0
  53. inspect_ai/model/_model.py +42 -1
  54. inspect_ai/model/_providers/anthropic.py +4 -0
  55. inspect_ai/model/_render.py +9 -2
  56. inspect_ai/scorer/_metric.py +12 -1
  57. inspect_ai/solver/__init__.py +2 -0
  58. inspect_ai/solver/_human_agent/agent.py +83 -0
  59. inspect_ai/solver/_human_agent/commands/__init__.py +36 -0
  60. inspect_ai/solver/_human_agent/commands/clock.py +70 -0
  61. inspect_ai/solver/_human_agent/commands/command.py +59 -0
  62. inspect_ai/solver/_human_agent/commands/instructions.py +74 -0
  63. inspect_ai/solver/_human_agent/commands/note.py +42 -0
  64. inspect_ai/solver/_human_agent/commands/score.py +80 -0
  65. inspect_ai/solver/_human_agent/commands/status.py +62 -0
  66. inspect_ai/solver/_human_agent/commands/submit.py +151 -0
  67. inspect_ai/solver/_human_agent/install.py +222 -0
  68. inspect_ai/solver/_human_agent/panel.py +252 -0
  69. inspect_ai/solver/_human_agent/service.py +45 -0
  70. inspect_ai/solver/_human_agent/state.py +55 -0
  71. inspect_ai/solver/_human_agent/view.py +24 -0
  72. inspect_ai/solver/_task_state.py +28 -2
  73. inspect_ai/tool/_tool.py +10 -2
  74. inspect_ai/tool/_tools/_web_browser/_web_browser.py +13 -10
  75. inspect_ai/util/__init__.py +8 -4
  76. inspect_ai/{_util/display.py → util/_display.py} +6 -0
  77. inspect_ai/util/_panel.py +31 -9
  78. inspect_ai/util/_sandbox/__init__.py +0 -3
  79. inspect_ai/util/_sandbox/context.py +5 -1
  80. inspect_ai/util/_sandbox/docker/compose.py +16 -10
  81. inspect_ai/util/_sandbox/docker/docker.py +9 -6
  82. inspect_ai/util/_sandbox/docker/internal.py +1 -1
  83. inspect_ai/util/_sandbox/docker/util.py +2 -2
  84. inspect_ai/util/_sandbox/environment.py +6 -5
  85. inspect_ai/util/_sandbox/local.py +1 -1
  86. inspect_ai/util/_sandbox/service.py +22 -7
  87. inspect_ai/util/_store.py +5 -6
  88. inspect_ai/util/_store_model.py +110 -0
  89. inspect_ai/util/_throttle.py +32 -0
  90. {inspect_ai-0.3.55.dist-info → inspect_ai-0.3.56.dist-info}/METADATA +1 -1
  91. {inspect_ai-0.3.55.dist-info → inspect_ai-0.3.56.dist-info}/RECORD +95 -73
  92. {inspect_ai-0.3.55.dist-info → inspect_ai-0.3.56.dist-info}/LICENSE +0 -0
  93. {inspect_ai-0.3.55.dist-info → inspect_ai-0.3.56.dist-info}/WHEEL +0 -0
  94. {inspect_ai-0.3.55.dist-info → inspect_ai-0.3.56.dist-info}/entry_points.txt +0 -0
  95. {inspect_ai-0.3.55.dist-info → inspect_ai-0.3.56.dist-info}/top_level.txt +0 -0
@@ -14508,6 +14508,10 @@ body[class^="vscode-"] .sidebar .list-group {
14508
14508
  --bs-list-group-active-color: var(--vscode-sideBarSectionHeader-foreground);
14509
14509
  }
14510
14510
 
14511
+ body[class^="vscode-"] div.ap-control-bar .ap-fullscreen-button {
14512
+ display: none;
14513
+ }
14514
+
14511
14515
  :root {
14512
14516
  --bs-navbar-padding-y: 0;
14513
14517
  --bs-navbar-brand-padding-y: 0;
@@ -14963,7 +14967,7 @@ table.table.table-sm td {
14963
14967
  }
14964
14968
 
14965
14969
  @keyframes moveLeftToRight {
14966
- from {
14970
+ from {
14967
14971
  margin-left: 0;
14968
14972
  }
14969
14973
  to {
@@ -14997,6 +15001,23 @@ pre[class*="language-"].tool-output {
14997
15001
  border-radius: var(--bs-border-radius) !important;
14998
15002
  }
14999
15003
 
15004
+ /* lightbox styles */
15005
+
15006
+
15007
+ .lightbox-overlay .close-button,
15008
+ .lightbox-overlay .nav-button {
15009
+ /* Hide by default */
15010
+ opacity: 0;
15011
+ pointer-events: none; /* so it doesn't register clicks when hidden */
15012
+ transition: opacity 0.3s ease;
15013
+ }
15014
+
15015
+ .lightbox-overlay:hover .close-button,
15016
+ .lightbox-overlay .nav-button {
15017
+ /* Show on hover */
15018
+ opacity: 1;
15019
+ pointer-events: auto;
15020
+ }
15000
15021
 
15001
15022
  /* jsondiffpatch */
15002
15023
 
@@ -15267,4 +15288,2355 @@ ul.jsondiffpatch-textdiff {
15267
15288
  .vscode-dark .token.deleted {
15268
15289
  color: red;
15269
15290
  }
15270
- /* END PrismJS */
15291
+ /* END PrismJS */div.ap-wrapper {
15292
+ outline: none;
15293
+ height: 100%;
15294
+ display: flex;
15295
+ justify-content: center;
15296
+ }
15297
+ div.ap-wrapper .title-bar {
15298
+ display: none;
15299
+ top: -78px;
15300
+ transition: top 0.15s linear;
15301
+ position: absolute;
15302
+ left: 0;
15303
+ right: 0;
15304
+ box-sizing: content-box;
15305
+ font-size: 20px;
15306
+ line-height: 1em;
15307
+ padding: 15px;
15308
+ font-family: sans-serif;
15309
+ color: white;
15310
+ background-color: rgba(0, 0, 0, 0.8);
15311
+ }
15312
+ div.ap-wrapper .title-bar img {
15313
+ vertical-align: middle;
15314
+ height: 48px;
15315
+ margin-right: 16px;
15316
+ }
15317
+ div.ap-wrapper .title-bar a {
15318
+ color: white;
15319
+ text-decoration: underline;
15320
+ }
15321
+ div.ap-wrapper .title-bar a:hover {
15322
+ text-decoration: none;
15323
+ }
15324
+ div.ap-wrapper:fullscreen {
15325
+ background-color: #000;
15326
+ width: 100%;
15327
+ align-items: center;
15328
+ }
15329
+ div.ap-wrapper:fullscreen .title-bar {
15330
+ display: initial;
15331
+ }
15332
+ div.ap-wrapper:fullscreen.hud .title-bar {
15333
+ top: 0;
15334
+ }
15335
+ div.ap-wrapper div.ap-player {
15336
+ text-align: left;
15337
+ display: inline-block;
15338
+ padding: 0px;
15339
+ position: relative;
15340
+ box-sizing: content-box;
15341
+ overflow: hidden;
15342
+ max-width: 100%;
15343
+ border-radius: 4px;
15344
+ font-size: 15px;
15345
+ background-color: var(--term-color-background);
15346
+ }
15347
+ .ap-player {
15348
+ --term-color-foreground: #ffffff;
15349
+ --term-color-background: #000000;
15350
+ --term-color-0: var(--term-color-foreground);
15351
+ --term-color-1: var(--term-color-foreground);
15352
+ --term-color-2: var(--term-color-foreground);
15353
+ --term-color-3: var(--term-color-foreground);
15354
+ --term-color-4: var(--term-color-foreground);
15355
+ --term-color-5: var(--term-color-foreground);
15356
+ --term-color-6: var(--term-color-foreground);
15357
+ --term-color-7: var(--term-color-foreground);
15358
+ --term-color-8: var(--term-color-0);
15359
+ --term-color-9: var(--term-color-1);
15360
+ --term-color-10: var(--term-color-2);
15361
+ --term-color-11: var(--term-color-3);
15362
+ --term-color-12: var(--term-color-4);
15363
+ --term-color-13: var(--term-color-5);
15364
+ --term-color-14: var(--term-color-6);
15365
+ --term-color-15: var(--term-color-7);
15366
+ }
15367
+ .ap-player .fg-0 {
15368
+ --fg: var(--term-color-0);
15369
+ }
15370
+ .ap-player .bg-0 {
15371
+ --bg: var(--term-color-0);
15372
+ }
15373
+ .ap-player .fg-1 {
15374
+ --fg: var(--term-color-1);
15375
+ }
15376
+ .ap-player .bg-1 {
15377
+ --bg: var(--term-color-1);
15378
+ }
15379
+ .ap-player .fg-2 {
15380
+ --fg: var(--term-color-2);
15381
+ }
15382
+ .ap-player .bg-2 {
15383
+ --bg: var(--term-color-2);
15384
+ }
15385
+ .ap-player .fg-3 {
15386
+ --fg: var(--term-color-3);
15387
+ }
15388
+ .ap-player .bg-3 {
15389
+ --bg: var(--term-color-3);
15390
+ }
15391
+ .ap-player .fg-4 {
15392
+ --fg: var(--term-color-4);
15393
+ }
15394
+ .ap-player .bg-4 {
15395
+ --bg: var(--term-color-4);
15396
+ }
15397
+ .ap-player .fg-5 {
15398
+ --fg: var(--term-color-5);
15399
+ }
15400
+ .ap-player .bg-5 {
15401
+ --bg: var(--term-color-5);
15402
+ }
15403
+ .ap-player .fg-6 {
15404
+ --fg: var(--term-color-6);
15405
+ }
15406
+ .ap-player .bg-6 {
15407
+ --bg: var(--term-color-6);
15408
+ }
15409
+ .ap-player .fg-7 {
15410
+ --fg: var(--term-color-7);
15411
+ }
15412
+ .ap-player .bg-7 {
15413
+ --bg: var(--term-color-7);
15414
+ }
15415
+ .ap-player .fg-8 {
15416
+ --fg: var(--term-color-8);
15417
+ }
15418
+ .ap-player .bg-8 {
15419
+ --bg: var(--term-color-8);
15420
+ }
15421
+ .ap-player .fg-9 {
15422
+ --fg: var(--term-color-9);
15423
+ }
15424
+ .ap-player .bg-9 {
15425
+ --bg: var(--term-color-9);
15426
+ }
15427
+ .ap-player .fg-10 {
15428
+ --fg: var(--term-color-10);
15429
+ }
15430
+ .ap-player .bg-10 {
15431
+ --bg: var(--term-color-10);
15432
+ }
15433
+ .ap-player .fg-11 {
15434
+ --fg: var(--term-color-11);
15435
+ }
15436
+ .ap-player .bg-11 {
15437
+ --bg: var(--term-color-11);
15438
+ }
15439
+ .ap-player .fg-12 {
15440
+ --fg: var(--term-color-12);
15441
+ }
15442
+ .ap-player .bg-12 {
15443
+ --bg: var(--term-color-12);
15444
+ }
15445
+ .ap-player .fg-13 {
15446
+ --fg: var(--term-color-13);
15447
+ }
15448
+ .ap-player .bg-13 {
15449
+ --bg: var(--term-color-13);
15450
+ }
15451
+ .ap-player .fg-14 {
15452
+ --fg: var(--term-color-14);
15453
+ }
15454
+ .ap-player .bg-14 {
15455
+ --bg: var(--term-color-14);
15456
+ }
15457
+ .ap-player .fg-15 {
15458
+ --fg: var(--term-color-15);
15459
+ }
15460
+ .ap-player .bg-15 {
15461
+ --bg: var(--term-color-15);
15462
+ }
15463
+ .ap-player .fg-8,
15464
+ .ap-player .fg-9,
15465
+ .ap-player .fg-10,
15466
+ .ap-player .fg-11,
15467
+ .ap-player .fg-12,
15468
+ .ap-player .fg-13,
15469
+ .ap-player .fg-14,
15470
+ .ap-player .fg-15 {
15471
+ font-weight: bold;
15472
+ }
15473
+ pre.ap-terminal {
15474
+ box-sizing: content-box;
15475
+ overflow: hidden;
15476
+ padding: 0;
15477
+ margin: 0px;
15478
+ display: block;
15479
+ white-space: pre;
15480
+ word-wrap: normal;
15481
+ word-break: normal;
15482
+ border-radius: 0;
15483
+ border-style: solid;
15484
+ cursor: text;
15485
+ border-width: 0.75em;
15486
+ color: var(--term-color-foreground);
15487
+ background-color: var(--term-color-background);
15488
+ border-color: var(--term-color-background);
15489
+ outline: none;
15490
+ line-height: var(--term-line-height);
15491
+ font-family: Consolas, Menlo, 'Bitstream Vera Sans Mono', monospace, 'Powerline Symbols';
15492
+ font-variant-ligatures: none;
15493
+ }
15494
+ pre.ap-terminal .ap-line {
15495
+ letter-spacing: normal;
15496
+ overflow: hidden;
15497
+ }
15498
+ pre.ap-terminal .ap-line span {
15499
+ padding: 0;
15500
+ display: inline-block;
15501
+ height: 100%;
15502
+ }
15503
+ pre.ap-terminal .ap-line {
15504
+ display: block;
15505
+ width: 100%;
15506
+ height: var(--term-line-height);
15507
+ position: relative;
15508
+ }
15509
+ pre.ap-terminal .ap-line span {
15510
+ position: absolute;
15511
+ left: calc(100% * var(--offset) / var(--term-cols));
15512
+ color: var(--fg);
15513
+ background-color: var(--bg);
15514
+ }
15515
+ pre.ap-terminal .ap-line .ap-inverse {
15516
+ color: var(--bg);
15517
+ background-color: var(--fg);
15518
+ }
15519
+ pre.ap-terminal .ap-line .cp-2580 {
15520
+ border-top: calc(0.5 * var(--term-line-height)) solid var(--fg);
15521
+ box-sizing: border-box;
15522
+ }
15523
+ pre.ap-terminal .ap-line .cp-2581 {
15524
+ border-bottom: calc(0.125 * var(--term-line-height)) solid var(--fg);
15525
+ box-sizing: border-box;
15526
+ }
15527
+ pre.ap-terminal .ap-line .cp-2582 {
15528
+ border-bottom: calc(0.25 * var(--term-line-height)) solid var(--fg);
15529
+ box-sizing: border-box;
15530
+ }
15531
+ pre.ap-terminal .ap-line .cp-2583 {
15532
+ border-bottom: calc(0.375 * var(--term-line-height)) solid var(--fg);
15533
+ box-sizing: border-box;
15534
+ }
15535
+ pre.ap-terminal .ap-line .cp-2584 {
15536
+ border-bottom: calc(0.5 * var(--term-line-height)) solid var(--fg);
15537
+ box-sizing: border-box;
15538
+ }
15539
+ pre.ap-terminal .ap-line .cp-2585 {
15540
+ border-bottom: calc(0.625 * var(--term-line-height)) solid var(--fg);
15541
+ box-sizing: border-box;
15542
+ }
15543
+ pre.ap-terminal .ap-line .cp-2586 {
15544
+ border-bottom: calc(0.75 * var(--term-line-height)) solid var(--fg);
15545
+ box-sizing: border-box;
15546
+ }
15547
+ pre.ap-terminal .ap-line .cp-2587 {
15548
+ border-bottom: calc(0.875 * var(--term-line-height)) solid var(--fg);
15549
+ box-sizing: border-box;
15550
+ }
15551
+ pre.ap-terminal .ap-line .cp-2588 {
15552
+ background-color: var(--fg);
15553
+ }
15554
+ pre.ap-terminal .ap-line .cp-2589 {
15555
+ border-left: 0.875ch solid var(--fg);
15556
+ box-sizing: border-box;
15557
+ }
15558
+ pre.ap-terminal .ap-line .cp-258a {
15559
+ border-left: 0.75ch solid var(--fg);
15560
+ box-sizing: border-box;
15561
+ }
15562
+ pre.ap-terminal .ap-line .cp-258b {
15563
+ border-left: 0.625ch solid var(--fg);
15564
+ box-sizing: border-box;
15565
+ }
15566
+ pre.ap-terminal .ap-line .cp-258c {
15567
+ border-left: 0.5ch solid var(--fg);
15568
+ box-sizing: border-box;
15569
+ }
15570
+ pre.ap-terminal .ap-line .cp-258d {
15571
+ border-left: 0.375ch solid var(--fg);
15572
+ box-sizing: border-box;
15573
+ }
15574
+ pre.ap-terminal .ap-line .cp-258e {
15575
+ border-left: 0.25ch solid var(--fg);
15576
+ box-sizing: border-box;
15577
+ }
15578
+ pre.ap-terminal .ap-line .cp-258f {
15579
+ border-left: 0.125ch solid var(--fg);
15580
+ box-sizing: border-box;
15581
+ }
15582
+ pre.ap-terminal .ap-line .cp-2590 {
15583
+ border-right: 0.5ch solid var(--fg);
15584
+ box-sizing: border-box;
15585
+ }
15586
+ pre.ap-terminal .ap-line .cp-2591 {
15587
+ background-color: color-mix(in srgb, var(--fg) 25%, var(--bg));
15588
+ }
15589
+ pre.ap-terminal .ap-line .cp-2592 {
15590
+ background-color: color-mix(in srgb, var(--fg) 50%, var(--bg));
15591
+ }
15592
+ pre.ap-terminal .ap-line .cp-2593 {
15593
+ background-color: color-mix(in srgb, var(--fg) 75%, var(--bg));
15594
+ }
15595
+ pre.ap-terminal .ap-line .cp-2594 {
15596
+ border-top: calc(0.125 * var(--term-line-height)) solid var(--fg);
15597
+ box-sizing: border-box;
15598
+ }
15599
+ pre.ap-terminal .ap-line .cp-2595 {
15600
+ border-right: 0.125ch solid var(--fg);
15601
+ box-sizing: border-box;
15602
+ }
15603
+ pre.ap-terminal .ap-line .cp-2596 {
15604
+ border-right: 0.5ch solid var(--bg);
15605
+ border-top: calc(0.5 * var(--term-line-height)) solid var(--bg);
15606
+ background-color: var(--fg);
15607
+ box-sizing: border-box;
15608
+ }
15609
+ pre.ap-terminal .ap-line .cp-2597 {
15610
+ border-left: 0.5ch solid var(--bg);
15611
+ border-top: calc(0.5 * var(--term-line-height)) solid var(--bg);
15612
+ background-color: var(--fg);
15613
+ box-sizing: border-box;
15614
+ }
15615
+ pre.ap-terminal .ap-line .cp-2598 {
15616
+ border-right: 0.5ch solid var(--bg);
15617
+ border-bottom: calc(0.5 * var(--term-line-height)) solid var(--bg);
15618
+ background-color: var(--fg);
15619
+ box-sizing: border-box;
15620
+ }
15621
+ pre.ap-terminal .ap-line .cp-2599 {
15622
+ border-left: 0.5ch solid var(--fg);
15623
+ border-bottom: calc(0.5 * var(--term-line-height)) solid var(--fg);
15624
+ box-sizing: border-box;
15625
+ }
15626
+ pre.ap-terminal .ap-line .cp-259a {
15627
+ box-sizing: border-box;
15628
+ }
15629
+ pre.ap-terminal .ap-line .cp-259a::before,
15630
+ pre.ap-terminal .ap-line .cp-259a::after {
15631
+ content: '';
15632
+ position: absolute;
15633
+ width: 0.5ch;
15634
+ height: calc(0.5 * var(--term-line-height));
15635
+ background-color: var(--fg);
15636
+ }
15637
+ pre.ap-terminal .ap-line .cp-259a::before {
15638
+ top: 0;
15639
+ left: 0;
15640
+ }
15641
+ pre.ap-terminal .ap-line .cp-259a::after {
15642
+ bottom: 0;
15643
+ right: 0;
15644
+ }
15645
+ pre.ap-terminal .ap-line .cp-259b {
15646
+ border-left: 0.5ch solid var(--fg);
15647
+ border-top: calc(0.5 * var(--term-line-height)) solid var(--fg);
15648
+ box-sizing: border-box;
15649
+ }
15650
+ pre.ap-terminal .ap-line .cp-259c {
15651
+ border-right: 0.5ch solid var(--fg);
15652
+ border-top: calc(0.5 * var(--term-line-height)) solid var(--fg);
15653
+ box-sizing: border-box;
15654
+ }
15655
+ pre.ap-terminal .ap-line .cp-259d {
15656
+ border-left: 0.5ch solid var(--bg);
15657
+ border-bottom: calc(0.5 * var(--term-line-height)) solid var(--bg);
15658
+ background-color: var(--fg);
15659
+ box-sizing: border-box;
15660
+ }
15661
+ pre.ap-terminal .ap-line .cp-259e {
15662
+ box-sizing: border-box;
15663
+ }
15664
+ pre.ap-terminal .ap-line .cp-259e::before,
15665
+ pre.ap-terminal .ap-line .cp-259e::after {
15666
+ content: '';
15667
+ position: absolute;
15668
+ width: 0.5ch;
15669
+ height: calc(0.5 * var(--term-line-height));
15670
+ background-color: var(--fg);
15671
+ }
15672
+ pre.ap-terminal .ap-line .cp-259e::before {
15673
+ top: 0;
15674
+ right: 0;
15675
+ }
15676
+ pre.ap-terminal .ap-line .cp-259e::after {
15677
+ bottom: 0;
15678
+ left: 0;
15679
+ }
15680
+ pre.ap-terminal .ap-line .cp-259f {
15681
+ border-right: 0.5ch solid var(--fg);
15682
+ border-bottom: calc(0.5 * var(--term-line-height)) solid var(--fg);
15683
+ box-sizing: border-box;
15684
+ }
15685
+ pre.ap-terminal .ap-line .cp-e0b0 {
15686
+ border-left: 1ch solid var(--fg);
15687
+ border-top: calc(0.5 * var(--term-line-height)) solid transparent;
15688
+ border-bottom: calc(0.5 * var(--term-line-height)) solid transparent;
15689
+ box-sizing: border-box;
15690
+ }
15691
+ pre.ap-terminal .ap-line .cp-e0b2 {
15692
+ border-right: 1ch solid var(--fg);
15693
+ border-top: calc(0.5 * var(--term-line-height)) solid transparent;
15694
+ border-bottom: calc(0.5 * var(--term-line-height)) solid transparent;
15695
+ box-sizing: border-box;
15696
+ }
15697
+ pre.ap-terminal.ap-cursor-on .ap-line .ap-cursor {
15698
+ color: var(--bg);
15699
+ background-color: var(--fg);
15700
+ border-radius: 0.05em;
15701
+ }
15702
+ pre.ap-terminal.ap-cursor-on .ap-line .ap-cursor.ap-inverse {
15703
+ color: var(--fg);
15704
+ background-color: var(--bg);
15705
+ }
15706
+ pre.ap-terminal:not(.ap-blink) .ap-line .ap-blink {
15707
+ color: transparent;
15708
+ }
15709
+ pre.ap-terminal .ap-bright {
15710
+ font-weight: bold;
15711
+ }
15712
+ pre.ap-terminal .ap-faint {
15713
+ opacity: 0.5;
15714
+ }
15715
+ pre.ap-terminal .ap-underline {
15716
+ text-decoration: underline;
15717
+ }
15718
+ pre.ap-terminal .ap-italic {
15719
+ font-style: italic;
15720
+ }
15721
+ pre.ap-terminal .ap-strikethrough {
15722
+ text-decoration: line-through;
15723
+ }
15724
+ .ap-line span {
15725
+ --fg: var(--term-color-foreground);
15726
+ --bg: var(--term-color-background);
15727
+ }
15728
+ div.ap-player div.ap-control-bar {
15729
+ width: 100%;
15730
+ height: 32px;
15731
+ display: flex;
15732
+ justify-content: space-between;
15733
+ align-items: stretch;
15734
+ color: var(--term-color-foreground);
15735
+ box-sizing: content-box;
15736
+ line-height: 1;
15737
+ position: absolute;
15738
+ bottom: 0;
15739
+ left: 0;
15740
+ opacity: 0;
15741
+ transition: opacity 0.15s linear;
15742
+ user-select: none;
15743
+ border-top: 2px solid color-mix(in oklab, black 33%, var(--term-color-background));
15744
+ z-index: 30;
15745
+ }
15746
+ div.ap-player div.ap-control-bar * {
15747
+ box-sizing: inherit;
15748
+ }
15749
+ div.ap-control-bar svg.ap-icon path {
15750
+ fill: var(--term-color-foreground);
15751
+ }
15752
+ div.ap-control-bar span.ap-playback-button {
15753
+ display: flex;
15754
+ flex: 0 0 auto;
15755
+ cursor: pointer;
15756
+ height: 12px;
15757
+ width: 12px;
15758
+ padding: 10px;
15759
+ }
15760
+ div.ap-control-bar span.ap-playback-button svg {
15761
+ height: 12px;
15762
+ width: 12px;
15763
+ }
15764
+ div.ap-control-bar span.ap-timer {
15765
+ display: flex;
15766
+ flex: 0 0 auto;
15767
+ min-width: 50px;
15768
+ margin: 0 10px;
15769
+ height: 100%;
15770
+ text-align: center;
15771
+ font-size: 13px;
15772
+ line-height: 100%;
15773
+ cursor: default;
15774
+ }
15775
+ div.ap-control-bar span.ap-timer span {
15776
+ font-family: Consolas, Menlo, 'Bitstream Vera Sans Mono', monospace;
15777
+ font-size: inherit;
15778
+ font-weight: 600;
15779
+ margin: auto;
15780
+ }
15781
+ div.ap-control-bar span.ap-timer .ap-time-remaining {
15782
+ display: none;
15783
+ }
15784
+ div.ap-control-bar span.ap-timer:hover .ap-time-elapsed {
15785
+ display: none;
15786
+ }
15787
+ div.ap-control-bar span.ap-timer:hover .ap-time-remaining {
15788
+ display: flex;
15789
+ }
15790
+ div.ap-control-bar .ap-progressbar {
15791
+ display: block;
15792
+ flex: 1 1 auto;
15793
+ height: 100%;
15794
+ padding: 0 10px;
15795
+ }
15796
+ div.ap-control-bar .ap-progressbar .ap-bar {
15797
+ display: block;
15798
+ position: relative;
15799
+ cursor: default;
15800
+ height: 100%;
15801
+ font-size: 0;
15802
+ }
15803
+ div.ap-control-bar .ap-progressbar .ap-bar .ap-gutter {
15804
+ display: block;
15805
+ position: absolute;
15806
+ top: 15px;
15807
+ left: 0;
15808
+ right: 0;
15809
+ height: 3px;
15810
+ }
15811
+ div.ap-control-bar .ap-progressbar .ap-bar .ap-gutter-empty {
15812
+ background-color: color-mix(in oklab, var(--term-color-foreground) 20%, var(--term-color-background));
15813
+ }
15814
+ div.ap-control-bar .ap-progressbar .ap-bar .ap-gutter-full {
15815
+ width: 100%;
15816
+ transform-origin: left center;
15817
+ background-color: var(--term-color-foreground);
15818
+ border-radius: 3px;
15819
+ }
15820
+ div.ap-control-bar.ap-seekable .ap-progressbar .ap-bar {
15821
+ cursor: pointer;
15822
+ }
15823
+ div.ap-control-bar .ap-fullscreen-button {
15824
+ display: block;
15825
+ flex: 0 0 auto;
15826
+ width: 14px;
15827
+ height: 14px;
15828
+ padding: 9px;
15829
+ cursor: pointer;
15830
+ position: relative;
15831
+ }
15832
+ div.ap-control-bar .ap-fullscreen-button svg {
15833
+ width: 14px;
15834
+ height: 14px;
15835
+ }
15836
+ div.ap-control-bar .ap-fullscreen-button svg.ap-icon-fullscreen-on {
15837
+ display: inline;
15838
+ }
15839
+ div.ap-control-bar .ap-fullscreen-button svg.ap-icon-fullscreen-off {
15840
+ display: none;
15841
+ }
15842
+ div.ap-control-bar .ap-fullscreen-button .ap-tooltip {
15843
+ right: 5px;
15844
+ left: initial;
15845
+ transform: none;
15846
+ }
15847
+ div.ap-wrapper.ap-hud .ap-control-bar {
15848
+ opacity: 1;
15849
+ }
15850
+ div.ap-wrapper:fullscreen .ap-fullscreen-button svg.ap-icon-fullscreen-on {
15851
+ display: none;
15852
+ }
15853
+ div.ap-wrapper:fullscreen .ap-fullscreen-button svg.ap-icon-fullscreen-off {
15854
+ display: inline;
15855
+ }
15856
+ span.ap-progressbar span.ap-marker-container {
15857
+ display: block;
15858
+ top: 0;
15859
+ bottom: 0;
15860
+ width: 21px;
15861
+ position: absolute;
15862
+ margin-left: -10px;
15863
+ }
15864
+ span.ap-marker-container span.ap-marker {
15865
+ display: block;
15866
+ top: 13px;
15867
+ bottom: 12px;
15868
+ left: 7px;
15869
+ right: 7px;
15870
+ background-color: color-mix(in oklab, var(--term-color-foreground) 33%, var(--term-color-background));
15871
+ position: absolute;
15872
+ transition: top 0.1s, bottom 0.1s, left 0.1s, right 0.1s, background-color 0.1s;
15873
+ border-radius: 50%;
15874
+ }
15875
+ span.ap-marker-container span.ap-marker.ap-marker-past {
15876
+ background-color: var(--term-color-foreground);
15877
+ }
15878
+ span.ap-marker-container span.ap-marker:hover,
15879
+ span.ap-marker-container:hover span.ap-marker {
15880
+ background-color: var(--term-color-foreground);
15881
+ top: 11px;
15882
+ bottom: 10px;
15883
+ left: 5px;
15884
+ right: 5px;
15885
+ }
15886
+ .ap-tooltip-container span.ap-tooltip {
15887
+ visibility: hidden;
15888
+ background-color: var(--term-color-foreground);
15889
+ color: var(--term-color-background);
15890
+ font-family: Consolas, Menlo, 'Bitstream Vera Sans Mono', monospace;
15891
+ font-weight: bold;
15892
+ text-align: center;
15893
+ padding: 0 0.5em;
15894
+ border-radius: 4px;
15895
+ position: absolute;
15896
+ z-index: 1;
15897
+ white-space: nowrap;
15898
+ /* Prevents the text from wrapping and makes sure the tooltip width adapts to the text length */
15899
+ font-size: 13px;
15900
+ line-height: 2em;
15901
+ bottom: 100%;
15902
+ left: 50%;
15903
+ transform: translateX(-50%);
15904
+ }
15905
+ .ap-tooltip-container:hover span.ap-tooltip {
15906
+ visibility: visible;
15907
+ }
15908
+ .ap-player .ap-overlay {
15909
+ z-index: 10;
15910
+ background-repeat: no-repeat;
15911
+ background-position: center;
15912
+ position: absolute;
15913
+ top: 0;
15914
+ left: 0;
15915
+ right: 0;
15916
+ bottom: 0;
15917
+ display: flex;
15918
+ justify-content: center;
15919
+ align-items: center;
15920
+ }
15921
+ .ap-player .ap-overlay-start {
15922
+ cursor: pointer;
15923
+ }
15924
+ .ap-player .ap-overlay-start .ap-play-button {
15925
+ font-size: 0px;
15926
+ position: absolute;
15927
+ left: 0;
15928
+ top: 0;
15929
+ right: 0;
15930
+ bottom: 0;
15931
+ text-align: center;
15932
+ color: white;
15933
+ height: 80px;
15934
+ max-height: 66%;
15935
+ margin: auto;
15936
+ }
15937
+ .ap-player .ap-overlay-start .ap-play-button div {
15938
+ height: 100%;
15939
+ }
15940
+ .ap-player .ap-overlay-start .ap-play-button div span {
15941
+ height: 100%;
15942
+ display: block;
15943
+ }
15944
+ .ap-player .ap-overlay-start .ap-play-button div span svg {
15945
+ height: 100%;
15946
+ }
15947
+ .ap-player .ap-overlay-start .ap-play-button svg {
15948
+ filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
15949
+ }
15950
+ .ap-player .ap-overlay-loading .ap-loader {
15951
+ width: 48px;
15952
+ height: 48px;
15953
+ border-radius: 50%;
15954
+ display: inline-block;
15955
+ position: relative;
15956
+ border: 10px solid;
15957
+ border-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.7) #ffffff;
15958
+ border-color: color-mix(in srgb, var(--term-color-foreground) 30%, var(--term-color-background)) color-mix(in srgb, var(--term-color-foreground) 50%, var(--term-color-background)) color-mix(in srgb, var(--term-color-foreground) 70%, var(--term-color-background)) color-mix(in srgb, var(--term-color-foreground) 100%, var(--term-color-background));
15959
+ box-sizing: border-box;
15960
+ animation: ap-loader-rotation 1s linear infinite;
15961
+ }
15962
+ .ap-player .ap-overlay-info {
15963
+ background-color: var(--term-color-background);
15964
+ }
15965
+ .ap-player .ap-overlay-info span {
15966
+ font-family: Consolas, Menlo, 'Bitstream Vera Sans Mono', monospace, 'Powerline Symbols';
15967
+ font-variant-ligatures: none;
15968
+ font-size: 2em;
15969
+ color: var(--term-color-foreground);
15970
+ }
15971
+ .ap-player .ap-overlay-info span .ap-line {
15972
+ letter-spacing: normal;
15973
+ overflow: hidden;
15974
+ }
15975
+ .ap-player .ap-overlay-info span .ap-line span {
15976
+ padding: 0;
15977
+ display: inline-block;
15978
+ height: 100%;
15979
+ }
15980
+ .ap-player .ap-overlay-help {
15981
+ background-color: rgba(0, 0, 0, 0.8);
15982
+ container-type: inline-size;
15983
+ }
15984
+ .ap-player .ap-overlay-help > div {
15985
+ font-family: Consolas, Menlo, 'Bitstream Vera Sans Mono', monospace, 'Powerline Symbols';
15986
+ font-variant-ligatures: none;
15987
+ max-width: 85%;
15988
+ max-height: 85%;
15989
+ font-size: 18px;
15990
+ color: var(--term-color-foreground);
15991
+ background-color: var(--term-color-background);
15992
+ border-radius: 6px;
15993
+ box-sizing: border-box;
15994
+ margin-bottom: 32px;
15995
+ }
15996
+ .ap-player .ap-overlay-help > div .ap-line {
15997
+ letter-spacing: normal;
15998
+ overflow: hidden;
15999
+ }
16000
+ .ap-player .ap-overlay-help > div .ap-line span {
16001
+ padding: 0;
16002
+ display: inline-block;
16003
+ height: 100%;
16004
+ }
16005
+ .ap-player .ap-overlay-help > div div {
16006
+ padding: calc(min(4cqw, 40px));
16007
+ font-size: calc(min(1.9cqw, 18px));
16008
+ }
16009
+ .ap-player .ap-overlay-help > div div p {
16010
+ font-weight: bold;
16011
+ margin: 0 0 2em 0;
16012
+ }
16013
+ .ap-player .ap-overlay-help > div div ul {
16014
+ list-style: none;
16015
+ padding: 0;
16016
+ }
16017
+ .ap-player .ap-overlay-help > div div ul li {
16018
+ margin: 0 0 0.75em 0;
16019
+ }
16020
+ .ap-player .ap-overlay-help > div div kbd {
16021
+ color: var(--term-color-background);
16022
+ background-color: var(--term-color-foreground);
16023
+ padding: 0.2em 0.5em;
16024
+ border-radius: 0.2em;
16025
+ font-family: inherit;
16026
+ font-size: 0.85em;
16027
+ border: none;
16028
+ margin: 0;
16029
+ }
16030
+ .ap-player .ap-overlay-error span {
16031
+ font-size: 8em;
16032
+ }
16033
+ @keyframes ap-loader-rotation {
16034
+ 0% {
16035
+ transform: rotate(0deg);
16036
+ }
16037
+ 100% {
16038
+ transform: rotate(360deg);
16039
+ }
16040
+ }
16041
+ .ap-terminal .fg-16 {
16042
+ --fg: #000000;
16043
+ }
16044
+ .ap-terminal .bg-16 {
16045
+ --bg: #000000;
16046
+ }
16047
+ .ap-terminal .fg-17 {
16048
+ --fg: #00005f;
16049
+ }
16050
+ .ap-terminal .bg-17 {
16051
+ --bg: #00005f;
16052
+ }
16053
+ .ap-terminal .fg-18 {
16054
+ --fg: #000087;
16055
+ }
16056
+ .ap-terminal .bg-18 {
16057
+ --bg: #000087;
16058
+ }
16059
+ .ap-terminal .fg-19 {
16060
+ --fg: #0000af;
16061
+ }
16062
+ .ap-terminal .bg-19 {
16063
+ --bg: #0000af;
16064
+ }
16065
+ .ap-terminal .fg-20 {
16066
+ --fg: #0000d7;
16067
+ }
16068
+ .ap-terminal .bg-20 {
16069
+ --bg: #0000d7;
16070
+ }
16071
+ .ap-terminal .fg-21 {
16072
+ --fg: #0000ff;
16073
+ }
16074
+ .ap-terminal .bg-21 {
16075
+ --bg: #0000ff;
16076
+ }
16077
+ .ap-terminal .fg-22 {
16078
+ --fg: #005f00;
16079
+ }
16080
+ .ap-terminal .bg-22 {
16081
+ --bg: #005f00;
16082
+ }
16083
+ .ap-terminal .fg-23 {
16084
+ --fg: #005f5f;
16085
+ }
16086
+ .ap-terminal .bg-23 {
16087
+ --bg: #005f5f;
16088
+ }
16089
+ .ap-terminal .fg-24 {
16090
+ --fg: #005f87;
16091
+ }
16092
+ .ap-terminal .bg-24 {
16093
+ --bg: #005f87;
16094
+ }
16095
+ .ap-terminal .fg-25 {
16096
+ --fg: #005faf;
16097
+ }
16098
+ .ap-terminal .bg-25 {
16099
+ --bg: #005faf;
16100
+ }
16101
+ .ap-terminal .fg-26 {
16102
+ --fg: #005fd7;
16103
+ }
16104
+ .ap-terminal .bg-26 {
16105
+ --bg: #005fd7;
16106
+ }
16107
+ .ap-terminal .fg-27 {
16108
+ --fg: #005fff;
16109
+ }
16110
+ .ap-terminal .bg-27 {
16111
+ --bg: #005fff;
16112
+ }
16113
+ .ap-terminal .fg-28 {
16114
+ --fg: #008700;
16115
+ }
16116
+ .ap-terminal .bg-28 {
16117
+ --bg: #008700;
16118
+ }
16119
+ .ap-terminal .fg-29 {
16120
+ --fg: #00875f;
16121
+ }
16122
+ .ap-terminal .bg-29 {
16123
+ --bg: #00875f;
16124
+ }
16125
+ .ap-terminal .fg-30 {
16126
+ --fg: #008787;
16127
+ }
16128
+ .ap-terminal .bg-30 {
16129
+ --bg: #008787;
16130
+ }
16131
+ .ap-terminal .fg-31 {
16132
+ --fg: #0087af;
16133
+ }
16134
+ .ap-terminal .bg-31 {
16135
+ --bg: #0087af;
16136
+ }
16137
+ .ap-terminal .fg-32 {
16138
+ --fg: #0087d7;
16139
+ }
16140
+ .ap-terminal .bg-32 {
16141
+ --bg: #0087d7;
16142
+ }
16143
+ .ap-terminal .fg-33 {
16144
+ --fg: #0087ff;
16145
+ }
16146
+ .ap-terminal .bg-33 {
16147
+ --bg: #0087ff;
16148
+ }
16149
+ .ap-terminal .fg-34 {
16150
+ --fg: #00af00;
16151
+ }
16152
+ .ap-terminal .bg-34 {
16153
+ --bg: #00af00;
16154
+ }
16155
+ .ap-terminal .fg-35 {
16156
+ --fg: #00af5f;
16157
+ }
16158
+ .ap-terminal .bg-35 {
16159
+ --bg: #00af5f;
16160
+ }
16161
+ .ap-terminal .fg-36 {
16162
+ --fg: #00af87;
16163
+ }
16164
+ .ap-terminal .bg-36 {
16165
+ --bg: #00af87;
16166
+ }
16167
+ .ap-terminal .fg-37 {
16168
+ --fg: #00afaf;
16169
+ }
16170
+ .ap-terminal .bg-37 {
16171
+ --bg: #00afaf;
16172
+ }
16173
+ .ap-terminal .fg-38 {
16174
+ --fg: #00afd7;
16175
+ }
16176
+ .ap-terminal .bg-38 {
16177
+ --bg: #00afd7;
16178
+ }
16179
+ .ap-terminal .fg-39 {
16180
+ --fg: #00afff;
16181
+ }
16182
+ .ap-terminal .bg-39 {
16183
+ --bg: #00afff;
16184
+ }
16185
+ .ap-terminal .fg-40 {
16186
+ --fg: #00d700;
16187
+ }
16188
+ .ap-terminal .bg-40 {
16189
+ --bg: #00d700;
16190
+ }
16191
+ .ap-terminal .fg-41 {
16192
+ --fg: #00d75f;
16193
+ }
16194
+ .ap-terminal .bg-41 {
16195
+ --bg: #00d75f;
16196
+ }
16197
+ .ap-terminal .fg-42 {
16198
+ --fg: #00d787;
16199
+ }
16200
+ .ap-terminal .bg-42 {
16201
+ --bg: #00d787;
16202
+ }
16203
+ .ap-terminal .fg-43 {
16204
+ --fg: #00d7af;
16205
+ }
16206
+ .ap-terminal .bg-43 {
16207
+ --bg: #00d7af;
16208
+ }
16209
+ .ap-terminal .fg-44 {
16210
+ --fg: #00d7d7;
16211
+ }
16212
+ .ap-terminal .bg-44 {
16213
+ --bg: #00d7d7;
16214
+ }
16215
+ .ap-terminal .fg-45 {
16216
+ --fg: #00d7ff;
16217
+ }
16218
+ .ap-terminal .bg-45 {
16219
+ --bg: #00d7ff;
16220
+ }
16221
+ .ap-terminal .fg-46 {
16222
+ --fg: #00ff00;
16223
+ }
16224
+ .ap-terminal .bg-46 {
16225
+ --bg: #00ff00;
16226
+ }
16227
+ .ap-terminal .fg-47 {
16228
+ --fg: #00ff5f;
16229
+ }
16230
+ .ap-terminal .bg-47 {
16231
+ --bg: #00ff5f;
16232
+ }
16233
+ .ap-terminal .fg-48 {
16234
+ --fg: #00ff87;
16235
+ }
16236
+ .ap-terminal .bg-48 {
16237
+ --bg: #00ff87;
16238
+ }
16239
+ .ap-terminal .fg-49 {
16240
+ --fg: #00ffaf;
16241
+ }
16242
+ .ap-terminal .bg-49 {
16243
+ --bg: #00ffaf;
16244
+ }
16245
+ .ap-terminal .fg-50 {
16246
+ --fg: #00ffd7;
16247
+ }
16248
+ .ap-terminal .bg-50 {
16249
+ --bg: #00ffd7;
16250
+ }
16251
+ .ap-terminal .fg-51 {
16252
+ --fg: #00ffff;
16253
+ }
16254
+ .ap-terminal .bg-51 {
16255
+ --bg: #00ffff;
16256
+ }
16257
+ .ap-terminal .fg-52 {
16258
+ --fg: #5f0000;
16259
+ }
16260
+ .ap-terminal .bg-52 {
16261
+ --bg: #5f0000;
16262
+ }
16263
+ .ap-terminal .fg-53 {
16264
+ --fg: #5f005f;
16265
+ }
16266
+ .ap-terminal .bg-53 {
16267
+ --bg: #5f005f;
16268
+ }
16269
+ .ap-terminal .fg-54 {
16270
+ --fg: #5f0087;
16271
+ }
16272
+ .ap-terminal .bg-54 {
16273
+ --bg: #5f0087;
16274
+ }
16275
+ .ap-terminal .fg-55 {
16276
+ --fg: #5f00af;
16277
+ }
16278
+ .ap-terminal .bg-55 {
16279
+ --bg: #5f00af;
16280
+ }
16281
+ .ap-terminal .fg-56 {
16282
+ --fg: #5f00d7;
16283
+ }
16284
+ .ap-terminal .bg-56 {
16285
+ --bg: #5f00d7;
16286
+ }
16287
+ .ap-terminal .fg-57 {
16288
+ --fg: #5f00ff;
16289
+ }
16290
+ .ap-terminal .bg-57 {
16291
+ --bg: #5f00ff;
16292
+ }
16293
+ .ap-terminal .fg-58 {
16294
+ --fg: #5f5f00;
16295
+ }
16296
+ .ap-terminal .bg-58 {
16297
+ --bg: #5f5f00;
16298
+ }
16299
+ .ap-terminal .fg-59 {
16300
+ --fg: #5f5f5f;
16301
+ }
16302
+ .ap-terminal .bg-59 {
16303
+ --bg: #5f5f5f;
16304
+ }
16305
+ .ap-terminal .fg-60 {
16306
+ --fg: #5f5f87;
16307
+ }
16308
+ .ap-terminal .bg-60 {
16309
+ --bg: #5f5f87;
16310
+ }
16311
+ .ap-terminal .fg-61 {
16312
+ --fg: #5f5faf;
16313
+ }
16314
+ .ap-terminal .bg-61 {
16315
+ --bg: #5f5faf;
16316
+ }
16317
+ .ap-terminal .fg-62 {
16318
+ --fg: #5f5fd7;
16319
+ }
16320
+ .ap-terminal .bg-62 {
16321
+ --bg: #5f5fd7;
16322
+ }
16323
+ .ap-terminal .fg-63 {
16324
+ --fg: #5f5fff;
16325
+ }
16326
+ .ap-terminal .bg-63 {
16327
+ --bg: #5f5fff;
16328
+ }
16329
+ .ap-terminal .fg-64 {
16330
+ --fg: #5f8700;
16331
+ }
16332
+ .ap-terminal .bg-64 {
16333
+ --bg: #5f8700;
16334
+ }
16335
+ .ap-terminal .fg-65 {
16336
+ --fg: #5f875f;
16337
+ }
16338
+ .ap-terminal .bg-65 {
16339
+ --bg: #5f875f;
16340
+ }
16341
+ .ap-terminal .fg-66 {
16342
+ --fg: #5f8787;
16343
+ }
16344
+ .ap-terminal .bg-66 {
16345
+ --bg: #5f8787;
16346
+ }
16347
+ .ap-terminal .fg-67 {
16348
+ --fg: #5f87af;
16349
+ }
16350
+ .ap-terminal .bg-67 {
16351
+ --bg: #5f87af;
16352
+ }
16353
+ .ap-terminal .fg-68 {
16354
+ --fg: #5f87d7;
16355
+ }
16356
+ .ap-terminal .bg-68 {
16357
+ --bg: #5f87d7;
16358
+ }
16359
+ .ap-terminal .fg-69 {
16360
+ --fg: #5f87ff;
16361
+ }
16362
+ .ap-terminal .bg-69 {
16363
+ --bg: #5f87ff;
16364
+ }
16365
+ .ap-terminal .fg-70 {
16366
+ --fg: #5faf00;
16367
+ }
16368
+ .ap-terminal .bg-70 {
16369
+ --bg: #5faf00;
16370
+ }
16371
+ .ap-terminal .fg-71 {
16372
+ --fg: #5faf5f;
16373
+ }
16374
+ .ap-terminal .bg-71 {
16375
+ --bg: #5faf5f;
16376
+ }
16377
+ .ap-terminal .fg-72 {
16378
+ --fg: #5faf87;
16379
+ }
16380
+ .ap-terminal .bg-72 {
16381
+ --bg: #5faf87;
16382
+ }
16383
+ .ap-terminal .fg-73 {
16384
+ --fg: #5fafaf;
16385
+ }
16386
+ .ap-terminal .bg-73 {
16387
+ --bg: #5fafaf;
16388
+ }
16389
+ .ap-terminal .fg-74 {
16390
+ --fg: #5fafd7;
16391
+ }
16392
+ .ap-terminal .bg-74 {
16393
+ --bg: #5fafd7;
16394
+ }
16395
+ .ap-terminal .fg-75 {
16396
+ --fg: #5fafff;
16397
+ }
16398
+ .ap-terminal .bg-75 {
16399
+ --bg: #5fafff;
16400
+ }
16401
+ .ap-terminal .fg-76 {
16402
+ --fg: #5fd700;
16403
+ }
16404
+ .ap-terminal .bg-76 {
16405
+ --bg: #5fd700;
16406
+ }
16407
+ .ap-terminal .fg-77 {
16408
+ --fg: #5fd75f;
16409
+ }
16410
+ .ap-terminal .bg-77 {
16411
+ --bg: #5fd75f;
16412
+ }
16413
+ .ap-terminal .fg-78 {
16414
+ --fg: #5fd787;
16415
+ }
16416
+ .ap-terminal .bg-78 {
16417
+ --bg: #5fd787;
16418
+ }
16419
+ .ap-terminal .fg-79 {
16420
+ --fg: #5fd7af;
16421
+ }
16422
+ .ap-terminal .bg-79 {
16423
+ --bg: #5fd7af;
16424
+ }
16425
+ .ap-terminal .fg-80 {
16426
+ --fg: #5fd7d7;
16427
+ }
16428
+ .ap-terminal .bg-80 {
16429
+ --bg: #5fd7d7;
16430
+ }
16431
+ .ap-terminal .fg-81 {
16432
+ --fg: #5fd7ff;
16433
+ }
16434
+ .ap-terminal .bg-81 {
16435
+ --bg: #5fd7ff;
16436
+ }
16437
+ .ap-terminal .fg-82 {
16438
+ --fg: #5fff00;
16439
+ }
16440
+ .ap-terminal .bg-82 {
16441
+ --bg: #5fff00;
16442
+ }
16443
+ .ap-terminal .fg-83 {
16444
+ --fg: #5fff5f;
16445
+ }
16446
+ .ap-terminal .bg-83 {
16447
+ --bg: #5fff5f;
16448
+ }
16449
+ .ap-terminal .fg-84 {
16450
+ --fg: #5fff87;
16451
+ }
16452
+ .ap-terminal .bg-84 {
16453
+ --bg: #5fff87;
16454
+ }
16455
+ .ap-terminal .fg-85 {
16456
+ --fg: #5fffaf;
16457
+ }
16458
+ .ap-terminal .bg-85 {
16459
+ --bg: #5fffaf;
16460
+ }
16461
+ .ap-terminal .fg-86 {
16462
+ --fg: #5fffd7;
16463
+ }
16464
+ .ap-terminal .bg-86 {
16465
+ --bg: #5fffd7;
16466
+ }
16467
+ .ap-terminal .fg-87 {
16468
+ --fg: #5fffff;
16469
+ }
16470
+ .ap-terminal .bg-87 {
16471
+ --bg: #5fffff;
16472
+ }
16473
+ .ap-terminal .fg-88 {
16474
+ --fg: #870000;
16475
+ }
16476
+ .ap-terminal .bg-88 {
16477
+ --bg: #870000;
16478
+ }
16479
+ .ap-terminal .fg-89 {
16480
+ --fg: #87005f;
16481
+ }
16482
+ .ap-terminal .bg-89 {
16483
+ --bg: #87005f;
16484
+ }
16485
+ .ap-terminal .fg-90 {
16486
+ --fg: #870087;
16487
+ }
16488
+ .ap-terminal .bg-90 {
16489
+ --bg: #870087;
16490
+ }
16491
+ .ap-terminal .fg-91 {
16492
+ --fg: #8700af;
16493
+ }
16494
+ .ap-terminal .bg-91 {
16495
+ --bg: #8700af;
16496
+ }
16497
+ .ap-terminal .fg-92 {
16498
+ --fg: #8700d7;
16499
+ }
16500
+ .ap-terminal .bg-92 {
16501
+ --bg: #8700d7;
16502
+ }
16503
+ .ap-terminal .fg-93 {
16504
+ --fg: #8700ff;
16505
+ }
16506
+ .ap-terminal .bg-93 {
16507
+ --bg: #8700ff;
16508
+ }
16509
+ .ap-terminal .fg-94 {
16510
+ --fg: #875f00;
16511
+ }
16512
+ .ap-terminal .bg-94 {
16513
+ --bg: #875f00;
16514
+ }
16515
+ .ap-terminal .fg-95 {
16516
+ --fg: #875f5f;
16517
+ }
16518
+ .ap-terminal .bg-95 {
16519
+ --bg: #875f5f;
16520
+ }
16521
+ .ap-terminal .fg-96 {
16522
+ --fg: #875f87;
16523
+ }
16524
+ .ap-terminal .bg-96 {
16525
+ --bg: #875f87;
16526
+ }
16527
+ .ap-terminal .fg-97 {
16528
+ --fg: #875faf;
16529
+ }
16530
+ .ap-terminal .bg-97 {
16531
+ --bg: #875faf;
16532
+ }
16533
+ .ap-terminal .fg-98 {
16534
+ --fg: #875fd7;
16535
+ }
16536
+ .ap-terminal .bg-98 {
16537
+ --bg: #875fd7;
16538
+ }
16539
+ .ap-terminal .fg-99 {
16540
+ --fg: #875fff;
16541
+ }
16542
+ .ap-terminal .bg-99 {
16543
+ --bg: #875fff;
16544
+ }
16545
+ .ap-terminal .fg-100 {
16546
+ --fg: #878700;
16547
+ }
16548
+ .ap-terminal .bg-100 {
16549
+ --bg: #878700;
16550
+ }
16551
+ .ap-terminal .fg-101 {
16552
+ --fg: #87875f;
16553
+ }
16554
+ .ap-terminal .bg-101 {
16555
+ --bg: #87875f;
16556
+ }
16557
+ .ap-terminal .fg-102 {
16558
+ --fg: #878787;
16559
+ }
16560
+ .ap-terminal .bg-102 {
16561
+ --bg: #878787;
16562
+ }
16563
+ .ap-terminal .fg-103 {
16564
+ --fg: #8787af;
16565
+ }
16566
+ .ap-terminal .bg-103 {
16567
+ --bg: #8787af;
16568
+ }
16569
+ .ap-terminal .fg-104 {
16570
+ --fg: #8787d7;
16571
+ }
16572
+ .ap-terminal .bg-104 {
16573
+ --bg: #8787d7;
16574
+ }
16575
+ .ap-terminal .fg-105 {
16576
+ --fg: #8787ff;
16577
+ }
16578
+ .ap-terminal .bg-105 {
16579
+ --bg: #8787ff;
16580
+ }
16581
+ .ap-terminal .fg-106 {
16582
+ --fg: #87af00;
16583
+ }
16584
+ .ap-terminal .bg-106 {
16585
+ --bg: #87af00;
16586
+ }
16587
+ .ap-terminal .fg-107 {
16588
+ --fg: #87af5f;
16589
+ }
16590
+ .ap-terminal .bg-107 {
16591
+ --bg: #87af5f;
16592
+ }
16593
+ .ap-terminal .fg-108 {
16594
+ --fg: #87af87;
16595
+ }
16596
+ .ap-terminal .bg-108 {
16597
+ --bg: #87af87;
16598
+ }
16599
+ .ap-terminal .fg-109 {
16600
+ --fg: #87afaf;
16601
+ }
16602
+ .ap-terminal .bg-109 {
16603
+ --bg: #87afaf;
16604
+ }
16605
+ .ap-terminal .fg-110 {
16606
+ --fg: #87afd7;
16607
+ }
16608
+ .ap-terminal .bg-110 {
16609
+ --bg: #87afd7;
16610
+ }
16611
+ .ap-terminal .fg-111 {
16612
+ --fg: #87afff;
16613
+ }
16614
+ .ap-terminal .bg-111 {
16615
+ --bg: #87afff;
16616
+ }
16617
+ .ap-terminal .fg-112 {
16618
+ --fg: #87d700;
16619
+ }
16620
+ .ap-terminal .bg-112 {
16621
+ --bg: #87d700;
16622
+ }
16623
+ .ap-terminal .fg-113 {
16624
+ --fg: #87d75f;
16625
+ }
16626
+ .ap-terminal .bg-113 {
16627
+ --bg: #87d75f;
16628
+ }
16629
+ .ap-terminal .fg-114 {
16630
+ --fg: #87d787;
16631
+ }
16632
+ .ap-terminal .bg-114 {
16633
+ --bg: #87d787;
16634
+ }
16635
+ .ap-terminal .fg-115 {
16636
+ --fg: #87d7af;
16637
+ }
16638
+ .ap-terminal .bg-115 {
16639
+ --bg: #87d7af;
16640
+ }
16641
+ .ap-terminal .fg-116 {
16642
+ --fg: #87d7d7;
16643
+ }
16644
+ .ap-terminal .bg-116 {
16645
+ --bg: #87d7d7;
16646
+ }
16647
+ .ap-terminal .fg-117 {
16648
+ --fg: #87d7ff;
16649
+ }
16650
+ .ap-terminal .bg-117 {
16651
+ --bg: #87d7ff;
16652
+ }
16653
+ .ap-terminal .fg-118 {
16654
+ --fg: #87ff00;
16655
+ }
16656
+ .ap-terminal .bg-118 {
16657
+ --bg: #87ff00;
16658
+ }
16659
+ .ap-terminal .fg-119 {
16660
+ --fg: #87ff5f;
16661
+ }
16662
+ .ap-terminal .bg-119 {
16663
+ --bg: #87ff5f;
16664
+ }
16665
+ .ap-terminal .fg-120 {
16666
+ --fg: #87ff87;
16667
+ }
16668
+ .ap-terminal .bg-120 {
16669
+ --bg: #87ff87;
16670
+ }
16671
+ .ap-terminal .fg-121 {
16672
+ --fg: #87ffaf;
16673
+ }
16674
+ .ap-terminal .bg-121 {
16675
+ --bg: #87ffaf;
16676
+ }
16677
+ .ap-terminal .fg-122 {
16678
+ --fg: #87ffd7;
16679
+ }
16680
+ .ap-terminal .bg-122 {
16681
+ --bg: #87ffd7;
16682
+ }
16683
+ .ap-terminal .fg-123 {
16684
+ --fg: #87ffff;
16685
+ }
16686
+ .ap-terminal .bg-123 {
16687
+ --bg: #87ffff;
16688
+ }
16689
+ .ap-terminal .fg-124 {
16690
+ --fg: #af0000;
16691
+ }
16692
+ .ap-terminal .bg-124 {
16693
+ --bg: #af0000;
16694
+ }
16695
+ .ap-terminal .fg-125 {
16696
+ --fg: #af005f;
16697
+ }
16698
+ .ap-terminal .bg-125 {
16699
+ --bg: #af005f;
16700
+ }
16701
+ .ap-terminal .fg-126 {
16702
+ --fg: #af0087;
16703
+ }
16704
+ .ap-terminal .bg-126 {
16705
+ --bg: #af0087;
16706
+ }
16707
+ .ap-terminal .fg-127 {
16708
+ --fg: #af00af;
16709
+ }
16710
+ .ap-terminal .bg-127 {
16711
+ --bg: #af00af;
16712
+ }
16713
+ .ap-terminal .fg-128 {
16714
+ --fg: #af00d7;
16715
+ }
16716
+ .ap-terminal .bg-128 {
16717
+ --bg: #af00d7;
16718
+ }
16719
+ .ap-terminal .fg-129 {
16720
+ --fg: #af00ff;
16721
+ }
16722
+ .ap-terminal .bg-129 {
16723
+ --bg: #af00ff;
16724
+ }
16725
+ .ap-terminal .fg-130 {
16726
+ --fg: #af5f00;
16727
+ }
16728
+ .ap-terminal .bg-130 {
16729
+ --bg: #af5f00;
16730
+ }
16731
+ .ap-terminal .fg-131 {
16732
+ --fg: #af5f5f;
16733
+ }
16734
+ .ap-terminal .bg-131 {
16735
+ --bg: #af5f5f;
16736
+ }
16737
+ .ap-terminal .fg-132 {
16738
+ --fg: #af5f87;
16739
+ }
16740
+ .ap-terminal .bg-132 {
16741
+ --bg: #af5f87;
16742
+ }
16743
+ .ap-terminal .fg-133 {
16744
+ --fg: #af5faf;
16745
+ }
16746
+ .ap-terminal .bg-133 {
16747
+ --bg: #af5faf;
16748
+ }
16749
+ .ap-terminal .fg-134 {
16750
+ --fg: #af5fd7;
16751
+ }
16752
+ .ap-terminal .bg-134 {
16753
+ --bg: #af5fd7;
16754
+ }
16755
+ .ap-terminal .fg-135 {
16756
+ --fg: #af5fff;
16757
+ }
16758
+ .ap-terminal .bg-135 {
16759
+ --bg: #af5fff;
16760
+ }
16761
+ .ap-terminal .fg-136 {
16762
+ --fg: #af8700;
16763
+ }
16764
+ .ap-terminal .bg-136 {
16765
+ --bg: #af8700;
16766
+ }
16767
+ .ap-terminal .fg-137 {
16768
+ --fg: #af875f;
16769
+ }
16770
+ .ap-terminal .bg-137 {
16771
+ --bg: #af875f;
16772
+ }
16773
+ .ap-terminal .fg-138 {
16774
+ --fg: #af8787;
16775
+ }
16776
+ .ap-terminal .bg-138 {
16777
+ --bg: #af8787;
16778
+ }
16779
+ .ap-terminal .fg-139 {
16780
+ --fg: #af87af;
16781
+ }
16782
+ .ap-terminal .bg-139 {
16783
+ --bg: #af87af;
16784
+ }
16785
+ .ap-terminal .fg-140 {
16786
+ --fg: #af87d7;
16787
+ }
16788
+ .ap-terminal .bg-140 {
16789
+ --bg: #af87d7;
16790
+ }
16791
+ .ap-terminal .fg-141 {
16792
+ --fg: #af87ff;
16793
+ }
16794
+ .ap-terminal .bg-141 {
16795
+ --bg: #af87ff;
16796
+ }
16797
+ .ap-terminal .fg-142 {
16798
+ --fg: #afaf00;
16799
+ }
16800
+ .ap-terminal .bg-142 {
16801
+ --bg: #afaf00;
16802
+ }
16803
+ .ap-terminal .fg-143 {
16804
+ --fg: #afaf5f;
16805
+ }
16806
+ .ap-terminal .bg-143 {
16807
+ --bg: #afaf5f;
16808
+ }
16809
+ .ap-terminal .fg-144 {
16810
+ --fg: #afaf87;
16811
+ }
16812
+ .ap-terminal .bg-144 {
16813
+ --bg: #afaf87;
16814
+ }
16815
+ .ap-terminal .fg-145 {
16816
+ --fg: #afafaf;
16817
+ }
16818
+ .ap-terminal .bg-145 {
16819
+ --bg: #afafaf;
16820
+ }
16821
+ .ap-terminal .fg-146 {
16822
+ --fg: #afafd7;
16823
+ }
16824
+ .ap-terminal .bg-146 {
16825
+ --bg: #afafd7;
16826
+ }
16827
+ .ap-terminal .fg-147 {
16828
+ --fg: #afafff;
16829
+ }
16830
+ .ap-terminal .bg-147 {
16831
+ --bg: #afafff;
16832
+ }
16833
+ .ap-terminal .fg-148 {
16834
+ --fg: #afd700;
16835
+ }
16836
+ .ap-terminal .bg-148 {
16837
+ --bg: #afd700;
16838
+ }
16839
+ .ap-terminal .fg-149 {
16840
+ --fg: #afd75f;
16841
+ }
16842
+ .ap-terminal .bg-149 {
16843
+ --bg: #afd75f;
16844
+ }
16845
+ .ap-terminal .fg-150 {
16846
+ --fg: #afd787;
16847
+ }
16848
+ .ap-terminal .bg-150 {
16849
+ --bg: #afd787;
16850
+ }
16851
+ .ap-terminal .fg-151 {
16852
+ --fg: #afd7af;
16853
+ }
16854
+ .ap-terminal .bg-151 {
16855
+ --bg: #afd7af;
16856
+ }
16857
+ .ap-terminal .fg-152 {
16858
+ --fg: #afd7d7;
16859
+ }
16860
+ .ap-terminal .bg-152 {
16861
+ --bg: #afd7d7;
16862
+ }
16863
+ .ap-terminal .fg-153 {
16864
+ --fg: #afd7ff;
16865
+ }
16866
+ .ap-terminal .bg-153 {
16867
+ --bg: #afd7ff;
16868
+ }
16869
+ .ap-terminal .fg-154 {
16870
+ --fg: #afff00;
16871
+ }
16872
+ .ap-terminal .bg-154 {
16873
+ --bg: #afff00;
16874
+ }
16875
+ .ap-terminal .fg-155 {
16876
+ --fg: #afff5f;
16877
+ }
16878
+ .ap-terminal .bg-155 {
16879
+ --bg: #afff5f;
16880
+ }
16881
+ .ap-terminal .fg-156 {
16882
+ --fg: #afff87;
16883
+ }
16884
+ .ap-terminal .bg-156 {
16885
+ --bg: #afff87;
16886
+ }
16887
+ .ap-terminal .fg-157 {
16888
+ --fg: #afffaf;
16889
+ }
16890
+ .ap-terminal .bg-157 {
16891
+ --bg: #afffaf;
16892
+ }
16893
+ .ap-terminal .fg-158 {
16894
+ --fg: #afffd7;
16895
+ }
16896
+ .ap-terminal .bg-158 {
16897
+ --bg: #afffd7;
16898
+ }
16899
+ .ap-terminal .fg-159 {
16900
+ --fg: #afffff;
16901
+ }
16902
+ .ap-terminal .bg-159 {
16903
+ --bg: #afffff;
16904
+ }
16905
+ .ap-terminal .fg-160 {
16906
+ --fg: #d70000;
16907
+ }
16908
+ .ap-terminal .bg-160 {
16909
+ --bg: #d70000;
16910
+ }
16911
+ .ap-terminal .fg-161 {
16912
+ --fg: #d7005f;
16913
+ }
16914
+ .ap-terminal .bg-161 {
16915
+ --bg: #d7005f;
16916
+ }
16917
+ .ap-terminal .fg-162 {
16918
+ --fg: #d70087;
16919
+ }
16920
+ .ap-terminal .bg-162 {
16921
+ --bg: #d70087;
16922
+ }
16923
+ .ap-terminal .fg-163 {
16924
+ --fg: #d700af;
16925
+ }
16926
+ .ap-terminal .bg-163 {
16927
+ --bg: #d700af;
16928
+ }
16929
+ .ap-terminal .fg-164 {
16930
+ --fg: #d700d7;
16931
+ }
16932
+ .ap-terminal .bg-164 {
16933
+ --bg: #d700d7;
16934
+ }
16935
+ .ap-terminal .fg-165 {
16936
+ --fg: #d700ff;
16937
+ }
16938
+ .ap-terminal .bg-165 {
16939
+ --bg: #d700ff;
16940
+ }
16941
+ .ap-terminal .fg-166 {
16942
+ --fg: #d75f00;
16943
+ }
16944
+ .ap-terminal .bg-166 {
16945
+ --bg: #d75f00;
16946
+ }
16947
+ .ap-terminal .fg-167 {
16948
+ --fg: #d75f5f;
16949
+ }
16950
+ .ap-terminal .bg-167 {
16951
+ --bg: #d75f5f;
16952
+ }
16953
+ .ap-terminal .fg-168 {
16954
+ --fg: #d75f87;
16955
+ }
16956
+ .ap-terminal .bg-168 {
16957
+ --bg: #d75f87;
16958
+ }
16959
+ .ap-terminal .fg-169 {
16960
+ --fg: #d75faf;
16961
+ }
16962
+ .ap-terminal .bg-169 {
16963
+ --bg: #d75faf;
16964
+ }
16965
+ .ap-terminal .fg-170 {
16966
+ --fg: #d75fd7;
16967
+ }
16968
+ .ap-terminal .bg-170 {
16969
+ --bg: #d75fd7;
16970
+ }
16971
+ .ap-terminal .fg-171 {
16972
+ --fg: #d75fff;
16973
+ }
16974
+ .ap-terminal .bg-171 {
16975
+ --bg: #d75fff;
16976
+ }
16977
+ .ap-terminal .fg-172 {
16978
+ --fg: #d78700;
16979
+ }
16980
+ .ap-terminal .bg-172 {
16981
+ --bg: #d78700;
16982
+ }
16983
+ .ap-terminal .fg-173 {
16984
+ --fg: #d7875f;
16985
+ }
16986
+ .ap-terminal .bg-173 {
16987
+ --bg: #d7875f;
16988
+ }
16989
+ .ap-terminal .fg-174 {
16990
+ --fg: #d78787;
16991
+ }
16992
+ .ap-terminal .bg-174 {
16993
+ --bg: #d78787;
16994
+ }
16995
+ .ap-terminal .fg-175 {
16996
+ --fg: #d787af;
16997
+ }
16998
+ .ap-terminal .bg-175 {
16999
+ --bg: #d787af;
17000
+ }
17001
+ .ap-terminal .fg-176 {
17002
+ --fg: #d787d7;
17003
+ }
17004
+ .ap-terminal .bg-176 {
17005
+ --bg: #d787d7;
17006
+ }
17007
+ .ap-terminal .fg-177 {
17008
+ --fg: #d787ff;
17009
+ }
17010
+ .ap-terminal .bg-177 {
17011
+ --bg: #d787ff;
17012
+ }
17013
+ .ap-terminal .fg-178 {
17014
+ --fg: #d7af00;
17015
+ }
17016
+ .ap-terminal .bg-178 {
17017
+ --bg: #d7af00;
17018
+ }
17019
+ .ap-terminal .fg-179 {
17020
+ --fg: #d7af5f;
17021
+ }
17022
+ .ap-terminal .bg-179 {
17023
+ --bg: #d7af5f;
17024
+ }
17025
+ .ap-terminal .fg-180 {
17026
+ --fg: #d7af87;
17027
+ }
17028
+ .ap-terminal .bg-180 {
17029
+ --bg: #d7af87;
17030
+ }
17031
+ .ap-terminal .fg-181 {
17032
+ --fg: #d7afaf;
17033
+ }
17034
+ .ap-terminal .bg-181 {
17035
+ --bg: #d7afaf;
17036
+ }
17037
+ .ap-terminal .fg-182 {
17038
+ --fg: #d7afd7;
17039
+ }
17040
+ .ap-terminal .bg-182 {
17041
+ --bg: #d7afd7;
17042
+ }
17043
+ .ap-terminal .fg-183 {
17044
+ --fg: #d7afff;
17045
+ }
17046
+ .ap-terminal .bg-183 {
17047
+ --bg: #d7afff;
17048
+ }
17049
+ .ap-terminal .fg-184 {
17050
+ --fg: #d7d700;
17051
+ }
17052
+ .ap-terminal .bg-184 {
17053
+ --bg: #d7d700;
17054
+ }
17055
+ .ap-terminal .fg-185 {
17056
+ --fg: #d7d75f;
17057
+ }
17058
+ .ap-terminal .bg-185 {
17059
+ --bg: #d7d75f;
17060
+ }
17061
+ .ap-terminal .fg-186 {
17062
+ --fg: #d7d787;
17063
+ }
17064
+ .ap-terminal .bg-186 {
17065
+ --bg: #d7d787;
17066
+ }
17067
+ .ap-terminal .fg-187 {
17068
+ --fg: #d7d7af;
17069
+ }
17070
+ .ap-terminal .bg-187 {
17071
+ --bg: #d7d7af;
17072
+ }
17073
+ .ap-terminal .fg-188 {
17074
+ --fg: #d7d7d7;
17075
+ }
17076
+ .ap-terminal .bg-188 {
17077
+ --bg: #d7d7d7;
17078
+ }
17079
+ .ap-terminal .fg-189 {
17080
+ --fg: #d7d7ff;
17081
+ }
17082
+ .ap-terminal .bg-189 {
17083
+ --bg: #d7d7ff;
17084
+ }
17085
+ .ap-terminal .fg-190 {
17086
+ --fg: #d7ff00;
17087
+ }
17088
+ .ap-terminal .bg-190 {
17089
+ --bg: #d7ff00;
17090
+ }
17091
+ .ap-terminal .fg-191 {
17092
+ --fg: #d7ff5f;
17093
+ }
17094
+ .ap-terminal .bg-191 {
17095
+ --bg: #d7ff5f;
17096
+ }
17097
+ .ap-terminal .fg-192 {
17098
+ --fg: #d7ff87;
17099
+ }
17100
+ .ap-terminal .bg-192 {
17101
+ --bg: #d7ff87;
17102
+ }
17103
+ .ap-terminal .fg-193 {
17104
+ --fg: #d7ffaf;
17105
+ }
17106
+ .ap-terminal .bg-193 {
17107
+ --bg: #d7ffaf;
17108
+ }
17109
+ .ap-terminal .fg-194 {
17110
+ --fg: #d7ffd7;
17111
+ }
17112
+ .ap-terminal .bg-194 {
17113
+ --bg: #d7ffd7;
17114
+ }
17115
+ .ap-terminal .fg-195 {
17116
+ --fg: #d7ffff;
17117
+ }
17118
+ .ap-terminal .bg-195 {
17119
+ --bg: #d7ffff;
17120
+ }
17121
+ .ap-terminal .fg-196 {
17122
+ --fg: #ff0000;
17123
+ }
17124
+ .ap-terminal .bg-196 {
17125
+ --bg: #ff0000;
17126
+ }
17127
+ .ap-terminal .fg-197 {
17128
+ --fg: #ff005f;
17129
+ }
17130
+ .ap-terminal .bg-197 {
17131
+ --bg: #ff005f;
17132
+ }
17133
+ .ap-terminal .fg-198 {
17134
+ --fg: #ff0087;
17135
+ }
17136
+ .ap-terminal .bg-198 {
17137
+ --bg: #ff0087;
17138
+ }
17139
+ .ap-terminal .fg-199 {
17140
+ --fg: #ff00af;
17141
+ }
17142
+ .ap-terminal .bg-199 {
17143
+ --bg: #ff00af;
17144
+ }
17145
+ .ap-terminal .fg-200 {
17146
+ --fg: #ff00d7;
17147
+ }
17148
+ .ap-terminal .bg-200 {
17149
+ --bg: #ff00d7;
17150
+ }
17151
+ .ap-terminal .fg-201 {
17152
+ --fg: #ff00ff;
17153
+ }
17154
+ .ap-terminal .bg-201 {
17155
+ --bg: #ff00ff;
17156
+ }
17157
+ .ap-terminal .fg-202 {
17158
+ --fg: #ff5f00;
17159
+ }
17160
+ .ap-terminal .bg-202 {
17161
+ --bg: #ff5f00;
17162
+ }
17163
+ .ap-terminal .fg-203 {
17164
+ --fg: #ff5f5f;
17165
+ }
17166
+ .ap-terminal .bg-203 {
17167
+ --bg: #ff5f5f;
17168
+ }
17169
+ .ap-terminal .fg-204 {
17170
+ --fg: #ff5f87;
17171
+ }
17172
+ .ap-terminal .bg-204 {
17173
+ --bg: #ff5f87;
17174
+ }
17175
+ .ap-terminal .fg-205 {
17176
+ --fg: #ff5faf;
17177
+ }
17178
+ .ap-terminal .bg-205 {
17179
+ --bg: #ff5faf;
17180
+ }
17181
+ .ap-terminal .fg-206 {
17182
+ --fg: #ff5fd7;
17183
+ }
17184
+ .ap-terminal .bg-206 {
17185
+ --bg: #ff5fd7;
17186
+ }
17187
+ .ap-terminal .fg-207 {
17188
+ --fg: #ff5fff;
17189
+ }
17190
+ .ap-terminal .bg-207 {
17191
+ --bg: #ff5fff;
17192
+ }
17193
+ .ap-terminal .fg-208 {
17194
+ --fg: #ff8700;
17195
+ }
17196
+ .ap-terminal .bg-208 {
17197
+ --bg: #ff8700;
17198
+ }
17199
+ .ap-terminal .fg-209 {
17200
+ --fg: #ff875f;
17201
+ }
17202
+ .ap-terminal .bg-209 {
17203
+ --bg: #ff875f;
17204
+ }
17205
+ .ap-terminal .fg-210 {
17206
+ --fg: #ff8787;
17207
+ }
17208
+ .ap-terminal .bg-210 {
17209
+ --bg: #ff8787;
17210
+ }
17211
+ .ap-terminal .fg-211 {
17212
+ --fg: #ff87af;
17213
+ }
17214
+ .ap-terminal .bg-211 {
17215
+ --bg: #ff87af;
17216
+ }
17217
+ .ap-terminal .fg-212 {
17218
+ --fg: #ff87d7;
17219
+ }
17220
+ .ap-terminal .bg-212 {
17221
+ --bg: #ff87d7;
17222
+ }
17223
+ .ap-terminal .fg-213 {
17224
+ --fg: #ff87ff;
17225
+ }
17226
+ .ap-terminal .bg-213 {
17227
+ --bg: #ff87ff;
17228
+ }
17229
+ .ap-terminal .fg-214 {
17230
+ --fg: #ffaf00;
17231
+ }
17232
+ .ap-terminal .bg-214 {
17233
+ --bg: #ffaf00;
17234
+ }
17235
+ .ap-terminal .fg-215 {
17236
+ --fg: #ffaf5f;
17237
+ }
17238
+ .ap-terminal .bg-215 {
17239
+ --bg: #ffaf5f;
17240
+ }
17241
+ .ap-terminal .fg-216 {
17242
+ --fg: #ffaf87;
17243
+ }
17244
+ .ap-terminal .bg-216 {
17245
+ --bg: #ffaf87;
17246
+ }
17247
+ .ap-terminal .fg-217 {
17248
+ --fg: #ffafaf;
17249
+ }
17250
+ .ap-terminal .bg-217 {
17251
+ --bg: #ffafaf;
17252
+ }
17253
+ .ap-terminal .fg-218 {
17254
+ --fg: #ffafd7;
17255
+ }
17256
+ .ap-terminal .bg-218 {
17257
+ --bg: #ffafd7;
17258
+ }
17259
+ .ap-terminal .fg-219 {
17260
+ --fg: #ffafff;
17261
+ }
17262
+ .ap-terminal .bg-219 {
17263
+ --bg: #ffafff;
17264
+ }
17265
+ .ap-terminal .fg-220 {
17266
+ --fg: #ffd700;
17267
+ }
17268
+ .ap-terminal .bg-220 {
17269
+ --bg: #ffd700;
17270
+ }
17271
+ .ap-terminal .fg-221 {
17272
+ --fg: #ffd75f;
17273
+ }
17274
+ .ap-terminal .bg-221 {
17275
+ --bg: #ffd75f;
17276
+ }
17277
+ .ap-terminal .fg-222 {
17278
+ --fg: #ffd787;
17279
+ }
17280
+ .ap-terminal .bg-222 {
17281
+ --bg: #ffd787;
17282
+ }
17283
+ .ap-terminal .fg-223 {
17284
+ --fg: #ffd7af;
17285
+ }
17286
+ .ap-terminal .bg-223 {
17287
+ --bg: #ffd7af;
17288
+ }
17289
+ .ap-terminal .fg-224 {
17290
+ --fg: #ffd7d7;
17291
+ }
17292
+ .ap-terminal .bg-224 {
17293
+ --bg: #ffd7d7;
17294
+ }
17295
+ .ap-terminal .fg-225 {
17296
+ --fg: #ffd7ff;
17297
+ }
17298
+ .ap-terminal .bg-225 {
17299
+ --bg: #ffd7ff;
17300
+ }
17301
+ .ap-terminal .fg-226 {
17302
+ --fg: #ffff00;
17303
+ }
17304
+ .ap-terminal .bg-226 {
17305
+ --bg: #ffff00;
17306
+ }
17307
+ .ap-terminal .fg-227 {
17308
+ --fg: #ffff5f;
17309
+ }
17310
+ .ap-terminal .bg-227 {
17311
+ --bg: #ffff5f;
17312
+ }
17313
+ .ap-terminal .fg-228 {
17314
+ --fg: #ffff87;
17315
+ }
17316
+ .ap-terminal .bg-228 {
17317
+ --bg: #ffff87;
17318
+ }
17319
+ .ap-terminal .fg-229 {
17320
+ --fg: #ffffaf;
17321
+ }
17322
+ .ap-terminal .bg-229 {
17323
+ --bg: #ffffaf;
17324
+ }
17325
+ .ap-terminal .fg-230 {
17326
+ --fg: #ffffd7;
17327
+ }
17328
+ .ap-terminal .bg-230 {
17329
+ --bg: #ffffd7;
17330
+ }
17331
+ .ap-terminal .fg-231 {
17332
+ --fg: #ffffff;
17333
+ }
17334
+ .ap-terminal .bg-231 {
17335
+ --bg: #ffffff;
17336
+ }
17337
+ .ap-terminal .fg-232 {
17338
+ --fg: #080808;
17339
+ }
17340
+ .ap-terminal .bg-232 {
17341
+ --bg: #080808;
17342
+ }
17343
+ .ap-terminal .fg-233 {
17344
+ --fg: #121212;
17345
+ }
17346
+ .ap-terminal .bg-233 {
17347
+ --bg: #121212;
17348
+ }
17349
+ .ap-terminal .fg-234 {
17350
+ --fg: #1c1c1c;
17351
+ }
17352
+ .ap-terminal .bg-234 {
17353
+ --bg: #1c1c1c;
17354
+ }
17355
+ .ap-terminal .fg-235 {
17356
+ --fg: #262626;
17357
+ }
17358
+ .ap-terminal .bg-235 {
17359
+ --bg: #262626;
17360
+ }
17361
+ .ap-terminal .fg-236 {
17362
+ --fg: #303030;
17363
+ }
17364
+ .ap-terminal .bg-236 {
17365
+ --bg: #303030;
17366
+ }
17367
+ .ap-terminal .fg-237 {
17368
+ --fg: #3a3a3a;
17369
+ }
17370
+ .ap-terminal .bg-237 {
17371
+ --bg: #3a3a3a;
17372
+ }
17373
+ .ap-terminal .fg-238 {
17374
+ --fg: #444444;
17375
+ }
17376
+ .ap-terminal .bg-238 {
17377
+ --bg: #444444;
17378
+ }
17379
+ .ap-terminal .fg-239 {
17380
+ --fg: #4e4e4e;
17381
+ }
17382
+ .ap-terminal .bg-239 {
17383
+ --bg: #4e4e4e;
17384
+ }
17385
+ .ap-terminal .fg-240 {
17386
+ --fg: #585858;
17387
+ }
17388
+ .ap-terminal .bg-240 {
17389
+ --bg: #585858;
17390
+ }
17391
+ .ap-terminal .fg-241 {
17392
+ --fg: #626262;
17393
+ }
17394
+ .ap-terminal .bg-241 {
17395
+ --bg: #626262;
17396
+ }
17397
+ .ap-terminal .fg-242 {
17398
+ --fg: #6c6c6c;
17399
+ }
17400
+ .ap-terminal .bg-242 {
17401
+ --bg: #6c6c6c;
17402
+ }
17403
+ .ap-terminal .fg-243 {
17404
+ --fg: #767676;
17405
+ }
17406
+ .ap-terminal .bg-243 {
17407
+ --bg: #767676;
17408
+ }
17409
+ .ap-terminal .fg-244 {
17410
+ --fg: #808080;
17411
+ }
17412
+ .ap-terminal .bg-244 {
17413
+ --bg: #808080;
17414
+ }
17415
+ .ap-terminal .fg-245 {
17416
+ --fg: #8a8a8a;
17417
+ }
17418
+ .ap-terminal .bg-245 {
17419
+ --bg: #8a8a8a;
17420
+ }
17421
+ .ap-terminal .fg-246 {
17422
+ --fg: #949494;
17423
+ }
17424
+ .ap-terminal .bg-246 {
17425
+ --bg: #949494;
17426
+ }
17427
+ .ap-terminal .fg-247 {
17428
+ --fg: #9e9e9e;
17429
+ }
17430
+ .ap-terminal .bg-247 {
17431
+ --bg: #9e9e9e;
17432
+ }
17433
+ .ap-terminal .fg-248 {
17434
+ --fg: #a8a8a8;
17435
+ }
17436
+ .ap-terminal .bg-248 {
17437
+ --bg: #a8a8a8;
17438
+ }
17439
+ .ap-terminal .fg-249 {
17440
+ --fg: #b2b2b2;
17441
+ }
17442
+ .ap-terminal .bg-249 {
17443
+ --bg: #b2b2b2;
17444
+ }
17445
+ .ap-terminal .fg-250 {
17446
+ --fg: #bcbcbc;
17447
+ }
17448
+ .ap-terminal .bg-250 {
17449
+ --bg: #bcbcbc;
17450
+ }
17451
+ .ap-terminal .fg-251 {
17452
+ --fg: #c6c6c6;
17453
+ }
17454
+ .ap-terminal .bg-251 {
17455
+ --bg: #c6c6c6;
17456
+ }
17457
+ .ap-terminal .fg-252 {
17458
+ --fg: #d0d0d0;
17459
+ }
17460
+ .ap-terminal .bg-252 {
17461
+ --bg: #d0d0d0;
17462
+ }
17463
+ .ap-terminal .fg-253 {
17464
+ --fg: #dadada;
17465
+ }
17466
+ .ap-terminal .bg-253 {
17467
+ --bg: #dadada;
17468
+ }
17469
+ .ap-terminal .fg-254 {
17470
+ --fg: #e4e4e4;
17471
+ }
17472
+ .ap-terminal .bg-254 {
17473
+ --bg: #e4e4e4;
17474
+ }
17475
+ .ap-terminal .fg-255 {
17476
+ --fg: #eeeeee;
17477
+ }
17478
+ .ap-terminal .bg-255 {
17479
+ --bg: #eeeeee;
17480
+ }
17481
+ .asciinema-player-theme-asciinema {
17482
+ --term-color-foreground: #cccccc;
17483
+ --term-color-background: #121314;
17484
+ --term-color-0: hsl(0, 0%, 0%);
17485
+ --term-color-1: hsl(343, 70%, 55%);
17486
+ --term-color-2: hsl(103, 70%, 44%);
17487
+ --term-color-3: hsl(43, 70%, 55%);
17488
+ --term-color-4: hsl(193, 70%, 49.5%);
17489
+ --term-color-5: hsl(283, 70%, 60.5%);
17490
+ --term-color-6: hsl(163, 70%, 60.5%);
17491
+ --term-color-7: hsl(0, 0%, 85%);
17492
+ --term-color-8: hsl(0, 0%, 30%);
17493
+ --term-color-9: hsl(343, 70%, 55%);
17494
+ --term-color-10: hsl(103, 70%, 44%);
17495
+ --term-color-11: hsl(43, 70%, 55%);
17496
+ --term-color-12: hsl(193, 70%, 49.5%);
17497
+ --term-color-13: hsl(283, 70%, 60.5%);
17498
+ --term-color-14: hsl(163, 70%, 60.5%);
17499
+ --term-color-15: hsl(0, 0%, 100%);
17500
+ }
17501
+ /*
17502
+ Based on Dracula: https://draculatheme.com
17503
+ */
17504
+ .asciinema-player-theme-dracula {
17505
+ --term-color-foreground: #f8f8f2;
17506
+ --term-color-background: #282a36;
17507
+ --term-color-0: #21222c;
17508
+ --term-color-1: #ff5555;
17509
+ --term-color-2: #50fa7b;
17510
+ --term-color-3: #f1fa8c;
17511
+ --term-color-4: #bd93f9;
17512
+ --term-color-5: #ff79c6;
17513
+ --term-color-6: #8be9fd;
17514
+ --term-color-7: #f8f8f2;
17515
+ --term-color-8: #6272a4;
17516
+ --term-color-9: #ff6e6e;
17517
+ --term-color-10: #69ff94;
17518
+ --term-color-11: #ffffa5;
17519
+ --term-color-12: #d6acff;
17520
+ --term-color-13: #ff92df;
17521
+ --term-color-14: #a4ffff;
17522
+ --term-color-15: #ffffff;
17523
+ }
17524
+ /* Based on Monokai from base16 collection - https://github.com/chriskempson/base16 */
17525
+ .asciinema-player-theme-monokai {
17526
+ --term-color-foreground: #f8f8f2;
17527
+ --term-color-background: #272822;
17528
+ --term-color-0: #272822;
17529
+ --term-color-1: #f92672;
17530
+ --term-color-2: #a6e22e;
17531
+ --term-color-3: #f4bf75;
17532
+ --term-color-4: #66d9ef;
17533
+ --term-color-5: #ae81ff;
17534
+ --term-color-6: #a1efe4;
17535
+ --term-color-7: #f8f8f2;
17536
+ --term-color-8: #75715e;
17537
+ --term-color-15: #f9f8f5;
17538
+ }
17539
+ /*
17540
+ Based on Nord: https://github.com/arcticicestudio/nord
17541
+ Via: https://github.com/neilotoole/asciinema-theme-nord
17542
+ */
17543
+ .asciinema-player-theme-nord {
17544
+ --term-color-foreground: #eceff4;
17545
+ --term-color-background: #2e3440;
17546
+ --term-color-0: #3b4252;
17547
+ --term-color-1: #bf616a;
17548
+ --term-color-2: #a3be8c;
17549
+ --term-color-3: #ebcb8b;
17550
+ --term-color-4: #81a1c1;
17551
+ --term-color-5: #b48ead;
17552
+ --term-color-6: #88c0d0;
17553
+ --term-color-7: #eceff4;
17554
+ }
17555
+ .asciinema-player-theme-seti {
17556
+ --term-color-foreground: #cacecd;
17557
+ --term-color-background: #111213;
17558
+ --term-color-0: #323232;
17559
+ --term-color-1: #c22832;
17560
+ --term-color-2: #8ec43d;
17561
+ --term-color-3: #e0c64f;
17562
+ --term-color-4: #43a5d5;
17563
+ --term-color-5: #8b57b5;
17564
+ --term-color-6: #8ec43d;
17565
+ --term-color-7: #eeeeee;
17566
+ --term-color-15: #ffffff;
17567
+ }
17568
+ /*
17569
+ Based on Solarized Dark: https://ethanschoonover.com/solarized/
17570
+ */
17571
+ .asciinema-player-theme-solarized-dark {
17572
+ --term-color-foreground: #839496;
17573
+ --term-color-background: #002b36;
17574
+ --term-color-0: #073642;
17575
+ --term-color-1: #dc322f;
17576
+ --term-color-2: #859900;
17577
+ --term-color-3: #b58900;
17578
+ --term-color-4: #268bd2;
17579
+ --term-color-5: #d33682;
17580
+ --term-color-6: #2aa198;
17581
+ --term-color-7: #eee8d5;
17582
+ --term-color-8: #002b36;
17583
+ --term-color-9: #cb4b16;
17584
+ --term-color-10: #586e75;
17585
+ --term-color-11: #657b83;
17586
+ --term-color-12: #839496;
17587
+ --term-color-13: #6c71c4;
17588
+ --term-color-14: #93a1a1;
17589
+ --term-color-15: #fdf6e3;
17590
+ }
17591
+ /*
17592
+ Based on Solarized Light: https://ethanschoonover.com/solarized/
17593
+ */
17594
+ .asciinema-player-theme-solarized-light {
17595
+ --term-color-foreground: #657b83;
17596
+ --term-color-background: #fdf6e3;
17597
+ --term-color-0: #073642;
17598
+ --term-color-1: #dc322f;
17599
+ --term-color-2: #859900;
17600
+ --term-color-3: #b58900;
17601
+ --term-color-4: #268bd2;
17602
+ --term-color-5: #d33682;
17603
+ --term-color-6: #2aa198;
17604
+ --term-color-7: #eee8d5;
17605
+ --term-color-8: #002b36;
17606
+ --term-color-9: #cb4b16;
17607
+ --term-color-10: #586e75;
17608
+ --term-color-11: #657c83;
17609
+ --term-color-12: #839496;
17610
+ --term-color-13: #6c71c4;
17611
+ --term-color-14: #93a1a1;
17612
+ --term-color-15: #fdf6e3;
17613
+ }
17614
+ .asciinema-player-theme-solarized-light .ap-overlay-start .ap-play-button svg .ap-play-btn-fill {
17615
+ fill: var(--term-color-1);
17616
+ }
17617
+ .asciinema-player-theme-solarized-light .ap-overlay-start .ap-play-button svg .ap-play-btn-stroke {
17618
+ stroke: var(--term-color-1);
17619
+ }
17620
+ /*
17621
+ Based on Tango: https://en.wikipedia.org/wiki/Tango_Desktop_Project
17622
+ */
17623
+ .asciinema-player-theme-tango {
17624
+ --term-color-foreground: #cccccc;
17625
+ --term-color-background: #121314;
17626
+ --term-color-0: #000000;
17627
+ --term-color-1: #cc0000;
17628
+ --term-color-2: #4e9a06;
17629
+ --term-color-3: #c4a000;
17630
+ --term-color-4: #3465a4;
17631
+ --term-color-5: #75507b;
17632
+ --term-color-6: #06989a;
17633
+ --term-color-7: #d3d7cf;
17634
+ --term-color-8: #555753;
17635
+ --term-color-9: #ef2929;
17636
+ --term-color-10: #8ae234;
17637
+ --term-color-11: #fce94f;
17638
+ --term-color-12: #729fcf;
17639
+ --term-color-13: #ad7fa8;
17640
+ --term-color-14: #34e2e2;
17641
+ --term-color-15: #eeeeec;
17642
+ }