How to increase the font size of GitHub Copilot sidebar UI elements in VS Code? #198411
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
Hi @singhal-shagun! 👋 There's currently no dedicated setting to control the font size of just those specific UI elements (model selector, agent mode selector, context items, etc.) around the Copilot Chat message box. However, here's a workaround that might help: Using VS Code Custom CSS (via extension)
.chat-input-toolbars,
.interactive-input-part .monaco-select-box,
.chat-attached-context {
font-size: 14px !important;
}
Alternative — partial workaround: "window.zoomLevel": 0.3This is less aggressive than a full integer zoom. Long term: Hope this helps in the meantime! 🙌 |
Beta Was this translation helpful? Give feedback.
-
|
Hi @singhal-shagun, If your main goal is simply to make the Copilot Chat UI easier to read, the easiest solution is to use Ctrl + "+" (or View → Appearance → Zoom In) in VS Code. This increases the overall UI scale, including the Copilot sidebar, chat controls, and other interface elements. The custom CSS approach can be tricky because many Copilot UI components use nested elements with their own styling, so changing the parent font-size often has no visible effect even when the CSS is being loaded correctly.
|
Beta Was this translation helpful? Give feedback.


Okay. So. After a bit of fiddling around, the following CSS is what seems to have worked for me: