Skip to content

Instantly share code, notes, and snippets.

@mhulse
Last active January 17, 2017 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhulse/a8c0ef18a536416e4d6fe1b3a191f757 to your computer and use it in GitHub Desktop.
Save mhulse/a8c0ef18a536416e4d6fe1b3a191f757 to your computer and use it in GitHub Desktop.
My latest Atom style sheet ...
.indent-guide-improved {
background-color: fade(white, 5%);
&.indent-guide-stack {
background-color: fade(cyan, 20%);
&.indent-guide-active {
background-color: fade(yellow, 20%);
}
}
}
/* Test comment. */
atom-text-editor::shadow {
.selection .region {
box-shadow: inset 0 0 1px 1px fade(#fff, 50%);
border-radius: 3px;
background: linear-gradient(
to right,
fade(#ff0, 20%) 0%,
fade(#0f0, 20%) 15%,
fade(#0ff, 20%) 30%,
fade(#00f, 20%) 50%,
fade(#f0f, 20%) 65%,
fade(#f00, 20%) 80%,
fade(#ff0, 20%) 100%
);
background-size: 500px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment