Skip to content

Instantly share code, notes, and snippets.

@Gurkengewuerz
Created October 3, 2016 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gurkengewuerz/72c4ce250095f638beb7056f9a20ca70 to your computer and use it in GitHub Desktop.
Save Gurkengewuerz/72c4ce250095f638beb7056f9a20ca70 to your computer and use it in GitHub Desktop.
/* This file contains the VS Code specific tweaks. They aren't part of the theme itself. */
/* Without the line numbers and the gutter, the text is too close to the edge. */
body {
padding-left: 12px;
}
/* This div shouldn't exist. */
pre > code > div {
display: inline-block;
}
/* Color adjustments for dark themes. */
body > .vs-dark {
color: #bbb;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #eee;
}
h4,
h5,
h6 {
color: #bbb;
}
code {
color: #fff;
}
table > thead > tr > th {
border-color: rgba(255, 255, 255, 0.69);
}
hr,
table > tbody > tr + tr > td,
pre > code {
border-color: rgba(255, 255, 255, 0.18);
}
/* High Contrast: Black */
body > .hc-black,
h1,
h2,
h3,
h4,
h5,
h6,
h4,
h5,
h6,
code {
color: #fff;
}
hr,
code,
table > thead > tr > th,
table > tbody > tr + tr > td,
pre > code {
border-color: #fff;
}
code,
blockquote {
background: transparent;
}
blockquote {
border-bottom: 1px solid #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment