protesilaos / prot16

Colour schemes mainly for highlighting code syntax. Each theme uses a 16-colour palette. It comes in light and dark variants.
https://protesilaos.com/schemes
GNU General Public License v3.0
26 stars 2 forks source link

Highlight group Label has the same color as regular text #7

Closed sro5h closed 5 years ago

sro5h commented 5 years ago

E.g. the keywords case and default in c++ don't get highlighted.

sro5h commented 5 years ago

The highlight group Float has the same color as regular text aswell, resulting in integral numbers being highlighted but not floating numbers.

protesilaos commented 5 years ago

Thank you for the feedback.

  1. Can you please tell me what text editor you are using?
  2. Can you share some demo with the issue?
sro5h commented 5 years ago

I use vim, e.g. editing a c++ file containing:

class SomeClass final {
public:
        ~SomeClass() = default;
};

Here the keyword default is not highlighted

Or for the number issue: int a = 3; <- 3 is highlighted float b = 3.4516f <- 3.4516 has the normal text color

protesilaos commented 5 years ago

Made some changes. Here a couple of screenshots using Gaia Dark/Light. This is Vim running in the console.

2018-12-10_18 09 20_1920x1062

2018-12-10_18 11 09_1920x1062

Is this closer to the desired result? I shall push the changes later on today.

sro5h commented 5 years ago

Yes :) that's perfect, thank you very much

protesilaos commented 5 years ago

I just updated this repo and the one specific to Vim. Thanks again for your feedback!

By the by, I realised that I have not touched this project in about a year. There are all sorts of things I learned from my more recent Tempus Themes project. I will incorporate all the improvements as soon as I can.

sro5h commented 5 years ago

Sounds good :) i'll have a look at your tempus themes project