Skip to content

Instantly share code, notes, and snippets.

@zhuochun
Last active August 29, 2015 14:06
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 zhuochun/b3659bcea98fca56cb43 to your computer and use it in GitHub Desktop.
Save zhuochun/b3659bcea98fca56cb43 to your computer and use it in GitHub Desktop.
/*
* Custom Markdown Styles for Atom
*/
.editor .gfm {
@gfm_gray0f: #F0F0F0;
@gfm_gray0b: #B2B2B2;
@gfm_gray07: #767676;
@gfm_gray05: #545454;
@gfm_pink: #FB007A;
@gfm_red_dark: #C30071;
@gfm_red_light: #E32791;
@gfm_orange: #D75F5F;
@gfm_blue_darker: #005F87;
@gfm_blue_dark: #008EC4;
@gfm_blue: #20BBFC;
@gfm_blue_light: #B6D6FD;
@gfm_cyan_dark: #20A5BA;
@gfm_cyan_light: #4FB8CC;
@gfm_green_dark: #10A778;
@gfm_green_light: #5FD7A7;
@gfm_purple_dark: #523C79;
@gfm_purple_light: #6855DE;
@gfm_yellow_light: #F3E430;
@gfm_yellow_dark: #A89C14;
.heading {
color: @gfm_orange;
font-weight: bold;
}
.link {
color: @gfm_blue_dark;
.link {
color: @gfm_blue;
}
}
.bold {
font-weight: bold;
color: @gfm_gray05;
}
.italic {
color: @gfm_gray07;
}
.strike {
text-decoration: line-through;
}
.raw {
color: @gfm_red_light;
background-color: @gfm_gray0f;
}
.code {
color: @gfm_gray0b;
}
.comment.quote {
color: @gfm_purple_light;
}
.variable {
color: @gfm_cyan_light;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment