OBJECT

CheermoteColorConfig

The color that should be used to display each cheer amount.

link GraphQL Schema definition

1type CheermoteColorConfig {
2
3# bits is the minimum number of bits that are required to render this tier.
4# To render at this tier the cheemote must have used >= this minimum but < the
5# next smallest tier.
6bits: Int!
7
8# color is the hex color used to render the number of bits for this tier.
9color: String!
10
11}