Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.5 KB

THEMES.md

File metadata and controls

55 lines (39 loc) · 1.5 KB

Special theming 🎨

Vue for Nova offers an easy way to improve the syntax highlighting in a Vue file. Have a look!

Special theming

Hooks

For implementing this feature in your theme you can use the following hooks:

/* Vue */

vue.html.tag.open,
vue.html.tag.close {
    color: #59be84;
}

vue.html.tag.name {
    color: #59be84;
    font-weight: bold;
}

vue.html.tag.attribute.shorthand-key {
    color: #59be84;
}

vue.html.tag.attribute.name,
vue.html.embedded.interpolation.bracket {
    color: #65c032;
    font-weight: bold;
}

vue.html.tag.attribute.argument {
    color: #59be84;
    font-weight: bold;
}

vue.html.tag.attribute.modifier {
    color: #59be84;
}

Supported themes

Add you theme

Feel free to open a pull request if you have implemented the feature in you theme and is not already listed.

WARNING: Use a web capable link from extensions.panic.com since GitHub doesn't recognize Mac App's URIs