@100mslive/roomkit-react 0.3.32 → 0.3.33-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,7 +43,9 @@ export const ChatToggle = ({ onClick }: { onClick?: () => void }) => {
43
43
  background: '$primary_default',
44
44
  }}
45
45
  >
46
- <Text variant="overline">{countUnreadMessages > 99 ? '99+' : countUnreadMessages}</Text>
46
+ <Text variant="overline" css={{ color: '$on_primary_high' }}>
47
+ {countUnreadMessages > 99 ? '99+' : countUnreadMessages}
48
+ </Text>
47
49
  </Flex>
48
50
  )}
49
51
  </Box>
@@ -60,7 +60,9 @@ export const MultipleChoiceOptions = ({
60
60
  <Flex direction="column" css={{ flexGrow: '1' }}>
61
61
  <Flex css={{ w: '100%' }}>
62
62
  <Text css={{ display: 'flex', flexGrow: '1' }}>
63
- <Label htmlFor={`${questionIndex}-${option.index}`}>{option.text}</Label>
63
+ <Label htmlFor={`${questionIndex}-${option.index}`} css={{ color: 'inherit' }}>
64
+ {option.text}
65
+ </Label>
64
66
  </Text>
65
67
  {showVoteCount && <VoteCount voteCount={option.voteCount} />}
66
68
  </Flex>
@@ -163,6 +163,7 @@ const TranscriptView = ({ peer_id, data }: { peer_id: string; data: string }) =>
163
163
  variant="body2"
164
164
  css={{
165
165
  fontWeight: '$normal',
166
+ color: 'inherit',
166
167
  }}
167
168
  >
168
169
  <b>{peerName}: </b>
@@ -240,6 +241,7 @@ export const CaptionsViewer = ({
240
241
  background: '#000000A3',
241
242
  overflow: 'clip',
242
243
  zIndex: 10,
244
+ color: '$on_primary_high',
243
245
  height: 'fit-content',
244
246
  r: '$1',
245
247
  p: '$6',