如何在Jupyter Notebook中使用暗色模式?
时间: 2024-12-13 22:13:10 浏览: 8
在Jupyter Notebook中使用暗色模式可以减少眼睛疲劳,特别是在长时间编程时。以下是几种实现暗色模式的方法:
1. 使用Jupyter Notebook的暗色主题扩展:
- 打开终端或命令提示符
- 安装jupyterthemes扩展:pip install jupyterthemes
- 安装完成后,使用以下命令启用暗色主题:
jt -t onedork -fs 95 -altp -tfs 11 -nfs 115 -cellw 88% -T
2. 使用浏览器扩展:
许多现代浏览器都支持暗色模式扩展,如Chrome的"Dark Reader"或Firefox的"Dark Mode"。
3. 修改自定义CSS:
- 在你的Jupyter配置目录中创建或编辑custom/custom.css文件
- 添加以下CSS代码:
```
/* Background color for the body */
body {
background-color: #1e1e1e;
color: #d4d4d4;
}
/* Code cells */
.CodeMirror {
background-color: #252526;
color: #d4d4d4;
}
/* Inverted cells */
.inverted {
background-color: #1e1e1e;
color: #d4d4d4;
}
/* Output area */
.output_area {
background-color: #1e1e1e;
color: #d4d4d4;
}
```
4. 使用JupyterLab的暗色主题:
如果你使用的是JupyterLab,可以在设置中直接选择暗色主题。
这些方法中,使用jupyterthemes扩展是最简单和最全面的解决方案,可以快速更改整个界面风格。
阅读全文