Skip to content

Instantly share code, notes, and snippets.

@nobane
Last active March 19, 2017 20:32
Show Gist options
  • Save nobane/355ae297158454f5d4794ecbeff5fa03 to your computer and use it in GitHub Desktop.
Save nobane/355ae297158454f5d4794ecbeff5fa03 to your computer and use it in GitHub Desktop.
Styles for atom + sunburst theme
atom-text-editor,
atom-text-editor.editor,
atom-panel,
.tree-view,
.tab-bar {
font-family: 'Terminus (TTF)'!important;
-webkit-font-smoothing: none;
font-style: normal;
font-size: 12px;
}
.scrollbars-visible-always {
/deep/ ::-webkit-scrollbar {
width: 5px!important;
height: 5px!important;
&-track {
background: black!important;
}
&-thumb {
background: gray!important;
border-color: gray!important;
}
&-corner {
background: black!important;
}
}
}
.vertical-scrollbar {
background-color: #000;
}
.tab-bar {
height: 24px
}
.tab-bar .tab {
height: 24px;
line-height: 2;
}
.tab-bar .tab .close-icon {
top: 3px!important;
}
atom-text-editor::shadow {
&.is-focused .selection .region,
.selection .region {
background-color: rgba(255, 255, 255, 0.2);
}
.punctuation.comment,
.comment,
.link.hyperlink {
font-style:normal;
}
.source.js.jsx .jsx .entity.other.attribute-name {
font-style: normal;
}
.variable {
color: white;
}
.variable.property {
color: #3E87E3;
}
.variable.this {
color: #E28964;
}
.meta.tag {
color: #cbcbcb;
}
}
.tab-bar {
.tab.active[data-type="MarkdownPreviewView"] .title,
.tab.active[data-type$="Editor"] .title, {
background: #333;
}
.tab.active[data-type$="Editor"]::after,
.tab.active[data-type="MarkdownPreviewView"]::after {
border-bottom-color: black;
}
.tab.active[data-type$="Editor"],
.tab.active[data-type="MarkdownPreviewView"] {
background-color: #333;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment