Skip to content

Instantly share code, notes, and snippets.

@nicholaswmin
Created April 29, 2024 15:04
Show Gist options
  • Save nicholaswmin/0788d5893d022f352e36e7c463cfa8a7 to your computer and use it in GitHub Desktop.
Save nicholaswmin/0788d5893d022f352e36e7c463cfa8a7 to your computer and use it in GitHub Desktop.
Pulsar Super Minimal
/*
* Your Stylesheet
*
* This stylesheet is loaded when Pulsar starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Pulsar.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
.bg() {
background-color: #222;
background: #222;
}
.mutedText() {
color: #555 !important;
}
.activeText() {
color: #ccc !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