Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ANSI colors css missing #16500

Open
mvanderlee opened this issue Mar 24, 2025 · 1 comment
Open

ANSI colors css missing #16500

mvanderlee opened this issue Mar 24, 2025 · 1 comment
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug

Comments

@mvanderlee
Copy link

Related: jupyter-widgets/ipywidgets#3957

Environment data

  • VS Code version: 1.98.2
  • Jupyter Extension version (available under the Extensions sidebar): 2025.2.0
  • Python Extension version (available under the Extensions sidebar): 2025.2.0
  • OS (Windows | Mac | Linux distro) and version: Windows 11
  • Python and/or Anaconda version: 3.11.3
  • Type of virtual environment used (N/A | venv | virtualenv | conda | ...): virtualenv
  • Jupyter server running: Local

Expected behaviour

I expect ANSI colors to be shown

Actual behaviour

ANSI colors are not rendered

Steps to reproduce:

import ipywidgets as widgets

print("\033[91mHello World\033[0m")
output = widgets.Output()
output.append_stdout("\033[91mHello World\033[0m")
output

The element has the correct CSS class, but the class stylesheet is missing.
https://github.com/jupyterlab/jupyterlab/blob/main/packages/rendermime/style/base.css#L126

Image

@mvanderlee mvanderlee added the bug Issue identified by VS Code Team member as probable bug label Mar 24, 2025
@mvanderlee
Copy link
Author

Workaround: Import the missing stylesheet manually.

from IPython.display import HTML
from urllib.request import urlopen
html = urlopen("https://raw.githubusercontent.com/jupyterlab/jupyterlab/refs/heads/main/packages/rendermime/style/base.css")
HTML(f"<style>{html.read().decode('utf-8')}</style>")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issue identified by VS Code Team member as probable bug
Projects
None yet
Development

No branches or pull requests

2 participants