Created
February 20, 2016 19:15
-
-
Save be5invis/257ce4d9ae74d254906d to your computer and use it in GitHub Desktop.
VSCode theme patch
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
/***** PATCHES *****/ | |
.monaco-workbench.hc-black { color: #FFF; background-color: #000; } | |
.monaco-workbench.hc-black .sidebar .separator { background-color: #000; border: 1px solid #6FC3DF; } | |
.monaco-workbench.hc-black input, | |
.monaco-workbench.hc-black textarea { | |
background-color: #000; | |
} | |
.monaco-workbench.hc-black .monaco-action-bar .action-item.disabled .action-label.disabled, | |
.monaco-workbench.hc-black .monaco-action-bar .action-item.disabled .action-label.disabled:hover { | |
opacity: 1; | |
} | |
.monaco-workbench.hc-black .monaco-action-bar .action-item.disabled .action-label.disabled:before { | |
opacity: .4; | |
} | |
.monaco-shell { font-family: "Iosevka", "Helvecita", "Inziu Iosevka SC", sans-serif} | |
.monaco-workbench > .part > .content {font-size:11px} | |
.decorationsOverviewRuler{ | |
clip:rect(1px,13px,1000px,1px); | |
margin-top: -2px; | |
height:calc(100% + 4px); | |
} | |
.monaco-workbench.vs-dark .editor > .content > .editor-center,.monaco-workbench.vs-dark .editor > .content > .editor-right { border-left-color:#0a0a0a} | |
.monaco-workbench.vs-dark { background: #252525 } | |
.monaco-editor.vs-dark .git-dirty-modified-diff-glyph { background-color: rgba(250,190,28,0.6) } | |
.explorer-viewlet .explorer-item-label, .explorer-viewlet .working-files-item-label { color: rgb(190, 190, 190) } | |
.vs-dark .monaco-tree .monaco-tree-row.selected { color: rgb(210, 210, 210) } | |
.vs-dark .monaco-tree .monaco-tree-row.focused, .vs-dark .monaco-tree .monaco-tree-row.selected { background: rgb(57,57,56)!important } | |
.vs-dark .monaco-tree .primary-action-bar,.vs-dark .monaco-tree.focused .monaco-tree-row.focused:not(.highlighted)>.content.actions>.primary-action-bar { background: none!important } | |
.monaco-workbench.no-workspace>.part.statusbar,.monaco-workbench > .part.statusbar {background: rgb(21,21,21)} | |
.monaco-workbench > .part.statusbar>.statusbar-item{opacity: 0.6} | |
.monaco-workbench>.part.panel>.title { border-top-color: rgba(255,255,255,0.1) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment