brenoprata10 / nvim-highlight-colors

Highlight colors for neovim
724 stars 33 forks source link

Support for modern CSS color function notation syntax #49

Closed benfrain closed 9 months ago

benfrain commented 11 months ago

Currently, a color written like this works (although does not support the alpha layer):

background-color: rgb(255 255 255 / 0.1);

But a color like this does not (using percentage instead of decimal):

background-color: rgb(255 255 255 / 10%);

Is the newer functional notation supported in this plugin (commas omitted, forward slash before alpha layer)?