Add custom CSS to change font color

Try these. Obviously you can tell that based on the names, they affect the different font sizes Glide offers. You can also adjust the font family, size etc for each and it will apply to all text components across your app so you dont have to add them into each component’s CSS field.

.headlineXLarge {
color: #000;
}

.headlineLarge {
color: #000;
}

.headlineMedium {
color: #000;
}

.headlineSmall {
color: #000;
}

.headlineXSmall {
color: #000;
}

.large {
color: #000;
}

.regular {
color: #000;
}

.small {
color: #000;
}

.footnote {
color: #000;
}
3 Likes