ryanmcalister / unotes

Unotes Visual Studio Code Extension. A markdown WYSIWYG notes editor.
MIT License
174 stars 22 forks source link

Styling properties not taking effect. #104

Open im-richard opened 3 years ago

im-richard commented 3 years ago

So I'm a bit at a loss for why.

I've read the docs; and implemented properties to override the default colors and it appears to not have any effect on certain things.

It also seems like for some that "do" work; I can change them the first time and it changes, but it almost acts as if it caches that color, and any changes after that don't take effect.

I tried restarting VSCode; reloading the entire interface and nothing changes.

I've also tried numerous dark themes, including the base dark themes, and all the results are the same.

        "unotes.wysText": "#998",
        "unotes.mdHeader": "#f10f0f",
        "unotes.wysTableThBackground": "#303030",
        "unotes.wysH1": "#1E7DD5",
        "unotes.wysH2": "#9b2929",
        "unotes.wysH3H4": "#37b630",
        "unotes.wysH5H6": "#B5553C",
        "unotes.wysHighlight": "#C5DE1F",
        "unotes.wysTableTdBorder": "#252525",
        "unotes.wysTableThBorder": "#252525",
        "unotes.wysCodeBlockBackground": "#4d4d4d",
        "unotes.mdCodeBlockBackground": "#232323",

H2 seems to not want to work. It is set to blue, instead of the red I tested with. Also, the code blocks background is black, and ignores any colors I add.

Also I tried the table border colors in an attempt to change the body of the table itself to have darker border lines. I saw that some where specific to the header, unless the body ones aren't possible.

See Image: RJYCX4C

I may be tired, and possibly over-looking something, but I've tried for awhile.

Regards