nvim-highlight-colors icon indicating copy to clipboard operation
nvim-highlight-colors copied to clipboard

Custom Properties that are nothing to do with color still get virtual text

Open benfrain opened this issue 7 months ago • 0 comments

Where I have Custom Properties that are nothing to do with colours, I still see the virtual symbols:

For example:

.cp-Title {
    color: var(--green-28ffbb);
    font-size: 15px;
    font-weight: 600;
    margin: var(--gutter);
}

.cp-ImageAndTitle_Title {
    font-size: 22px;
    font-family: var(--fontCondensed);
    font-variation-settings: var(--fontCondensedVariations);
    font-weight: 700;
    grid-row: 1;
    grid-column: 2;
    color: var(--grey-ffffff);
}

I get virtual text symbols next to font-family custom properties

benfrain avatar Jul 01 '24 16:07 benfrain