Skip to content

Instantly share code, notes, and snippets.

@monotykamary
Last active January 7, 2025 08:00
Show Gist options
  • Save monotykamary/b00fcd6369aad47c8ea8545f6ae42538 to your computer and use it in GitHub Desktop.
Save monotykamary/b00fcd6369aad47c8ea8545f6ae42538 to your computer and use it in GitHub Desktop.
Custom VSCode CSS with Ayu Mirage
/* Main font family customization for core UI elements */
.monaco-workbench *:not(.codicon) {
font-family: 'IBM Plex Mono', monospace !important;
}
/* Set specific font size for list elements */
.monaco-list-row,
.monaco-list-rows {
font-size: 12px;
}
/* Remove background and border from command center */
.monaco-workbench .part.titlebar>.titlebar-container>.titlebar-center>.window-title>.command-center .action-item.command-center-center {
background: none;
border: none;
}
/* Hide search icon in action bar */
.monaco-action-bar * span.codicon.codicon-search.search-icon,
.monaco-workbench .part.titlebar>.titlebar-container>.titlebar-center>.window-title>.command-center>.monaco-toolbar>.monaco-action-bar>.actions-container>.action-item.monaco-dropdown-with-primary .action-label, .monaco-workbench .part.titlebar>.titlebar-container>.titlebar-center>.window-title>.command-center>.monaco-toolbar>.monaco-action-bar>.actions-container>.action-item>.action-label {
display: none;
}
.breadcrumbs-below-tabs .breadcrumbs-control {
padding: 10px 30px;
}
@monotykamary
Copy link
Author

monotykamary commented Dec 31, 2024

image image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment