Last active
July 25, 2016 07:45
-
-
Save Yukaii/75f83723164faa0dbfa8f7ff23615c4f to your computer and use it in GitHub Desktop.
VScode custom css using https://github.com/be5invis/vscode-custom-css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.explorer-item-label { | |
font-family: InputSansCondensed-Thin; | |
font-size: 12px; | |
} | |
.folder-icon { | |
font-weight: bold; | |
} | |
.monaco-workbench > .part.statusbar { | |
font-family: Monoid; | |
background: #B92D81; | |
} | |
.monaco-workbench.no-workspace>.part.statusbar { | |
background: rgb(60, 59, 59); | |
} | |
.vs-dark .monaco-tree.focused .monaco-tree-rows>.monaco-tree-row.focused.selected:not(.highlighted) { | |
background-color: #751746; | |
} | |
.explorer-viewlet-label>.badge-content { | |
background-color: #DE1178; | |
} | |
.git-viewlet-label>.badge-content { | |
background-color: #DE1178; | |
} | |
.extensions-badge>.badge-content { | |
background-color: #DE1178; | |
} | |
.vs-dark .git-viewlet>.changes-view>.status-view>.monaco-tree .monaco-tree-row .file-status.modified .status { | |
background-color: #DE1178; | |
} | |
/* For Cake Color Scheme */ | |
.vs-dark .monaco-workbench>.activitybar>.content { | |
background-color: #2E231B; | |
} | |
.vs-dark .monaco-workbench>.sidebar>.title>.title-actions { | |
background-color: #3A241E; | |
} | |
.vs-dark .monaco-workbench .sidebar { | |
background: #3A241E; | |
} | |
.vs-dark .monaco-tree .monaco-tree-row.selected:not(.highlighted) { | |
background-color: #5D4A42; | |
} | |
.vs-dark .monaco-tree.focused .monaco-tree-row.focused:not(.highlighted) { | |
background-color: #920947; | |
} | |
.vs-dark .monaco-tree .monaco-tree-row:hover:not(.highlighted):not(.selected):not(.focused) { | |
background-color: #502121; | |
} | |
.vs-dark .monaco-tree.focused .monaco-tree-row.selected:not(.highlighted) { | |
background-color: #DE1178; | |
} | |
.vs-dark .monaco-tree.focused .monaco-tree-rows > .monaco-tree-row.focused.selected:not(.highlighted) { | |
background-color: #920947; | |
} | |
.monaco-tree.focused .monaco-tree-rows > .monaco-tree-row.selected:not(.highlighted) { | |
background-color: #DE1178; | |
} | |
.monaco-tree.focused .monaco-tree-rows > .monaco-tree-row.focused.selected:not(.highlighted) { | |
background-color: #DE1178; | |
} | |
.vs-dark .quick-open-widget { | |
background-color: #2F1809; | |
} | |
.quick-open-widget .quick-open-tree .quick-open-entry .quick-open-help-entry-label { | |
color: #DE1178; | |
} | |
.vs-dark .quick-open-widget .quick-open-tree .quick-open-entry .quick-open-help-entry-label { | |
color: #DE1178; | |
} | |
.quick-open-widget .quick-open-tree .results-group { | |
color: #DE1178; | |
} | |
.vs-dark .quick-open-widget .quick-open-tree .results-group { | |
color: #DE1178; | |
} | |
.quick-open-widget .quick-open-tree .monaco-highlighted-label .highlight { | |
color: #DE1178; | |
} | |
.vs-dark .quick-open-widget .quick-open-tree .monaco-highlighted-label .highlight { | |
color: #DE1178; | |
} | |
.vs-dark .global-message-list li.message-list-entry .actions-container .message-action { | |
background-color: #de1178; | |
} | |
.vs-dark .global-message-list li.message-list-entry .message-left-side.severity.app-info, .vs .global-message-list li.message-list-entry .message-left-side.severity.app-info { | |
background-color: #de1178; | |
} | |
.vs-dark .global-message-list li.message-list-entry .actions-container .message-action:hover { | |
background-color: #EC72B0; | |
} | |
/* For Cake Color Scheme End */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment