Skip to content

Instantly share code, notes, and snippets.

@marijnvdwerf
Created January 18, 2017 12:37
Show Gist options
  • Save marijnvdwerf/f29c5811ef297d6d5c0a6074e87e4830 to your computer and use it in GitHub Desktop.
Save marijnvdwerf/f29c5811ef297d6d5c0a6074e87e4830 to your computer and use it in GitHub Desktop.
$base03: #002b36;
$base02: #073642;
$base01: #586e75;
$base00: #657b83;
$base0: #839496;
$base1: #93a1a1;
$base2: #eee8d5;
$base3: #fdf6e3;
$yellow: #b58900;
$orange: #cb4b16;
$red: #dc322f;
$magenta: #d33682;
$violet: #6c71c4;
$blue: #268bd2;
$cyan: #2aa198;
$green: #859900;
body {
background: $base03 !important;
}
.articleItemContent {
-webkit-font-smoothing: subpixel-antialiased;
}
/* string */
span[style*="#999999"] {
color: mix($base1, $base2) !important;
}
/* multiline string */
span[style*="#ff9900"] {
color: mix($base1, $base2) !important;
}
/* name */
span[style*="#ff00ff"] {
color: $blue !important;
}
/* ??? */
span[style*="#000080"] {
color: $base0 !important;
}
/* keyword */
span[style*="#3366ff"] {
color: $green !important;
}
/* number */
span[style*="#ff0000"] {
color: $cyan !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment