Skip to content

Instantly share code, notes, and snippets.

@rross101
Last active May 1, 2019 16:24
Show Gist options
  • Save rross101/b5b550adcaaf3325df50ce13ae9cded7 to your computer and use it in GitHub Desktop.
Save rross101/b5b550adcaaf3325df50ce13ae9cded7 to your computer and use it in GitHub Desktop.
My styles.less file for Atom - multi-coloured markdown headings, all black background
atom-text-editor {
background-color: black;
}
.atom-dock-resize-handle {
background-color: teal;
}
.tree-view {
background-color: black;
}
.item-views {
background-color: black;
}
.document-outline {
background-color: black;
}
.tree-item-text {
font-family: Inconsolata;
font-size: 15px;
}
.syntax--heading-1.syntax--md {
color:#cb4b16;
}
.syntax--heading-2.syntax--md {
color: #b58900;
}
.syntax--heading-3.syntax--md {
color: #d33682;
}
.syntax--heading-4.syntax--md {
color: #2aa198;
}
.syntax--heading-5.syntax--md {
color: #6c71c4;
}
.syntax--unordered.syntax--list.syntax--markup.syntax--md {
color: #859900
}
.syntax--ordered.syntax--list.syntax--markup.syntax--md {
color: #268bd2
}
.syntax--quote.syntax--markup.syntax--md {
color: #dc322f;
}
.syntax--punctuation.syntax--md {
color: #839496;
}
.syntax--text.syntax--md {
color: #fdf6e3;
}
// #586e75 #657b83 #93a1a1 #eee8d5 #cb4b16 #dc322f #d33682
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment