Skip to content

Instantly share code, notes, and snippets.

@mgood
Created May 22, 2019 22:26
Show Gist options
  • Save mgood/63460378ff28f5598bf887b16052b4a5 to your computer and use it in GitHub Desktop.
Save mgood/63460378ff28f5598bf887b16052b4a5 to your computer and use it in GitHub Desktop.
Glow effect for Horizon VS Code theme
/*
Adds glow effect to https://horizontheme.com
Glow based on https://github.com/robb0wen/synthwave-vscode
Use Custom CSS and JS Loader to apply:
https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css
*/
/* Variables, property names, tags, markup headings */
.mtk5 {
color: #f4b8ade6;
text-shadow: 0 0 2px #001716, 0 0 3px #eb7560e6, 0 0 5px #eb7560e6;
}
/* Functions, escape characters, CSS #ids */
.mtk6 {
color: #94e2e9e6;
text-shadow: 0 0 2px #001716, 0 0 3px #25b0bce6, 0 0 5px #25b0bce6;
}
/* Keywords, template literals & embedded punctuation (e.g. ${} or {} ) */
.mtk9 {
color: #ca9ae4e6;
text-shadow: 0 0 2px #001716, 0 0 3px #b877dbe6, 0 0 5px #b877dbe6;
}
/* Operators */
.mtk10 {
color: #f3bdcae6;
text-shadow: 0 0 2px #001716, 0 0 3px #e95678e6, 0 0 5px #e95678e6;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment