CapnKitten / Material-Discord

Material design theme for Discord
343 stars 153 forks source link

Please add text color options #197

Closed randomhuman9 closed 8 months ago

randomhuman9 commented 8 months ago

The default color for text seems to be a very bright shade of white. So the contrast with the dark backgrounds is very high. These options can help people who would prefer a lower contrast. image

CapnKitten commented 8 months ago

Discord already has text color variables you can change, and that's what the theme uses.

.theme-dark {
    --text-normal: hsl(210, 9.1%, 87.1%);
    --text-muted: hsl(214, 8.1%, 61.2%);

    --channels-default: hsl(214, 8.1%, 61.2%);

    --interactive-normal: hsl(215, 8.8%, 73.3%);
    --interactive-hover: hsl(210, 9.1%, 87.1%);
    --interactive-active: hsl(0, 0%, 100%);
    --interactive-muted: hsl(228, 6%, 32.5%);
}
randomhuman9 commented 8 months ago

Oh yes that works! Thanks for replying!