Skip to content

Instantly share code, notes, and snippets.

@jmsfwk
Created July 15, 2016 22:15
Show Gist options
  • Save jmsfwk/acea651c117318051efcc83cbe165886 to your computer and use it in GitHub Desktop.
Save jmsfwk/acea651c117318051efcc83cbe165886 to your computer and use it in GitHub Desktop.
Atom styles for Monoisome in html
atom-text-editor {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-webkit-font-feature-settings: "liga" on, "calt" on;
}
atom-text-editor[data-grammar*="text html"] {
font-family: Monoisome;
}
atom-text-editor::shadow .string.quoted,
atom-text-editor::shadow .string.regexp {
-webkit-font-feature-settings: "liga" off, "calt" off;
}
[data-grammar*="text html"]::shadow .string.quoted {
-webkit-font-smoothing: antialiased;
-webkit-font-feature-settings: "liga" on, "calt" on;
}
atom-text-editor[data-grammar*="text html"]::shadow {
.cursor-line,
.cursor-line .string.quoted{
-webkit-font-feature-settings: "liga" off, "calt" off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment