Skip to content

Instantly share code, notes, and snippets.

@nicholaswmin
Created April 29, 2024 15:43
Show Gist options
  • Save nicholaswmin/83d59a47afbdf399a24764c3c9be1b1f to your computer and use it in GitHub Desktop.
Save nicholaswmin/83d59a47afbdf399a24764c3c9be1b1f to your computer and use it in GitHub Desktop.
Super Minimal Atom/Pulsar stylesheet
/*
* File -> Stylesheet and copy this
* - Makes everything darker
* - Mutes distracting labels
*/
.bg() {
background-color: #222;
background: #222;
}
.activeText() {
color: #ccc !important;
}
.mutedText() {
color: #555 !important;
}
atom-text-editor,
atom-workspace, { .bg() }
.tree-view { .bg() }
.status-bar { .bg() }
.status-bar * { .mutedText() }
.tab-bar { .bg(); border: 0 }
.tab-bar .tab .title,
.tab-bar .tab { margin:0; .bg() }
.tab.active { .activeText() }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment