RoseTheFlower / MetroSteam

Metro skin for Steam. Reborn.
184 stars 8 forks source link

Is there a way to separate player name and status color ? #13

Closed Yashirow closed 1 year ago

Yashirow commented 1 year ago

Hi, just want to know how to separate the player name and the status color/opacity. The theme in general is awesome but the only flaw for me is that game name/status is the same color and opacity than the player name. Is there a way to separate both ? Thanks.

RoseTheFlower commented 1 year ago

For those online, look for

.online [class*="personanameandstatus_richPresenceLabel_"]

For those in a game, look for

color: inherit !important;

and .ingame[class*="personanameandstatus_twoLine_"]

Set the color values to your preference, like color: red or rgba(200,200,100,0.7)

Yashirow commented 1 year ago

Thanks a lot, exactly what I wanted.