Electron Highlighter

Electron highlighter is a dark syntax theme based off of the iconic One Dark theme from Atom, with a more vibrant color palette.

Palette

Colors

#f7768e
#ffd9af
#fcf9c3
#58ffc7
#57f9ff
#82aaff
#d2a6ef

Grays

#141820
#24283b
#506686
#7c8eac
#a8b5d1
#c5cee0

Examples

Below you can check out some examples of the color scheme being used in common languages.

Note: The code examples below are using the PrismJS syntax highlighter. The actual syntax highlighting in your editor may look different.

:root {
  --font-base: 16px;
}
.someClass {
  font-family: serif;
  font-size: var(--font-base);
}

#someID {
  background: yellow;
  display: flex;
}

main {
  margin-top: 20px;
}

input[type="text"] {
  border-radius: 0;
  -webkit-border-radius: 0;
}