Skip to content

Instantly share code, notes, and snippets.

@sean-codes
Forked from MattMcFarland/styles.less
Last active August 6, 2017 01:29
Show Gist options
  • Save sean-codes/9bb84ad9f0b7d75c363ef1e0742eca89 to your computer and use it in GitHub Desktop.
Save sean-codes/9bb84ad9f0b7d75c363ef1e0742eca89 to your computer and use it in GitHub Desktop.
Ligature fonts for atom
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
atom-text-editor {
font-family: 'Fira Code';
font-style: normal;
text-rendering: optimizeLegibility;
}
atom-text-editor.editor {
.syntax--string {
color: #84a3e0;
}
.syntax--string.syntax--quoted,
.syntax--string.syntax--regexp {
-webkit-font-feature-settings: "liga" off, "calt" off;
}
.syntax--source.syntax--js.syntax--jsx > .syntax--keyword.syntax--syntax--control.syntax--flow.syntax--js,
.syntax--storage, .syntax--type .syntax--function,
.syntax--keyword.syntax--operator.syntax--new.syntax--js,
.syntax--keyword.syntax--control.syntax--js,
.syntax--keyword.syntax--operator.syntax--of.syntax--js {
vertical-align: baseline;
font-family: 'flottflott';
height: inherit;
font-size: 1.5em;
line-height: 1rem;
}
.syntax--keyword.syntax--operator.syntax--new.syntax--js{
color:#2be087!important;
}
.syntax--source.syntax--js.syntax--jsx,
.syntax--storage.syntax--type.syntax--function.syntax--arrow.syntax--js,
.syntax--variable {
font-family: 'Fira Code';
font-style: normal;
}
.syntax--string.syntax--unquoted.syntax--js {
color: #CDD3DE;
}
.syntax--entity.syntax--name {
font-weight: bold;
}
}
@sean-codes
Copy link
Author

Hi! I made this fork to make deprivation notice inside atom go away!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment