@@ -478,10 +478,10 @@ export type Theme = {
478478 height ?: number ;
479479 } ;
480480 reactionButton : {
481- filledColor : ColorValue ;
482- unfilledColor : ColorValue ;
483- filledBackgroundColor : ColorValue ;
484- unfilledBackgroundColor : ColorValue ;
481+ filledColor ? : ColorValue ;
482+ unfilledColor ? : ColorValue ;
483+ filledBackgroundColor ? : ColorValue ;
484+ unfilledBackgroundColor ? : ColorValue ;
485485 } ;
486486 reactionPicker : {
487487 buttonContainer : ViewStyle ;
@@ -497,19 +497,19 @@ export type Theme = {
497497 avatarSize : number ;
498498 container : ViewStyle ;
499499 contentContainer : ViewStyle ;
500- filledBackgroundColor : ColorValue ;
500+ filledBackgroundColor ? : ColorValue ;
501501 flatlistColumnContainer : ViewStyle ;
502502 flatlistContainer : ViewStyle ;
503- iconFilledColor : ColorValue ;
504- iconUnFilledColor : ColorValue ;
503+ iconFilledColor ? : ColorValue ;
504+ iconUnFilledColor ? : ColorValue ;
505505 radius : number ;
506506 reactionBubble : ViewStyle ;
507507 reactionBubbleBackground : ViewStyle ;
508508 reactionBubbleBorderRadius : number ;
509509 reactionSelectorContainer : ViewStyle ;
510510 reactionsText : TextStyle ;
511511 title : TextStyle ;
512- unfilledBackgroundColor : ColorValue ;
512+ unfilledBackgroundColor ? : ColorValue ;
513513 } ;
514514 } ;
515515 messagePreview : {
@@ -660,12 +660,12 @@ export type Theme = {
660660 item : {
661661 container : ViewStyle ;
662662 countText : TextStyle ;
663- filledBackgroundColor : ColorValue ;
663+ filledBackgroundColor ? : ColorValue ;
664664 icon : ViewStyle ;
665- iconFillColor : ColorValue ;
665+ iconFillColor ? : ColorValue ;
666666 iconSize : number ;
667- iconUnFillColor : ColorValue ;
668- unfilledBackgroundColor : ColorValue ;
667+ iconUnFillColor ? : ColorValue ;
668+ unfilledBackgroundColor ? : ColorValue ;
669669 } ;
670670 } ;
671671 reactionListTop : {
@@ -1275,12 +1275,7 @@ export const defaultTheme: Theme = {
12751275 title : { } ,
12761276 } ,
12771277 bottomSheet : { } ,
1278- reactionButton : {
1279- filledBackgroundColor : Colors . light_blue ,
1280- filledColor : Colors . accent_blue ,
1281- unfilledBackgroundColor : Colors . white ,
1282- unfilledColor : Colors . grey ,
1283- } ,
1278+ reactionButton : { } ,
12841279 reactionPicker : {
12851280 buttonContainer : { } ,
12861281 container : { } ,
@@ -1295,19 +1290,15 @@ export const defaultTheme: Theme = {
12951290 avatarSize : 64 ,
12961291 container : { } ,
12971292 contentContainer : { } ,
1298- filledBackgroundColor : Colors . light_blue ,
12991293 flatlistColumnContainer : { } ,
13001294 flatlistContainer : { } ,
1301- iconFilledColor : Colors . accent_blue ,
1302- iconUnFilledColor : Colors . grey ,
13031295 radius : 2 ,
13041296 reactionBubble : { } ,
13051297 reactionBubbleBackground : { } ,
13061298 reactionBubbleBorderRadius : 24 ,
13071299 reactionSelectorContainer : { } ,
13081300 reactionsText : { } ,
13091301 title : { } ,
1310- unfilledBackgroundColor : Colors . grey_gainsboro ,
13111302 } ,
13121303 } ,
13131304 messagePreview : {
@@ -1481,12 +1472,8 @@ export const defaultTheme: Theme = {
14811472 item : {
14821473 container : { } ,
14831474 countText : { } ,
1484- filledBackgroundColor : Colors . light_blue ,
14851475 icon : { } ,
1486- iconFillColor : Colors . accent_blue ,
14871476 iconSize : 16 ,
1488- iconUnFillColor : Colors . grey ,
1489- unfilledBackgroundColor : Colors . grey_gainsboro ,
14901477 } ,
14911478 } ,
14921479 reactionListTop : {
@@ -1533,7 +1520,6 @@ export const defaultTheme: Theme = {
15331520 container : { } ,
15341521 } ,
15351522 targetedMessageContainer : { } ,
1536- unreadUnderlayColor : Colors . bg_gradient_start ,
15371523 videoThumbnail : {
15381524 container : { } ,
15391525 roundedView : { } ,
0 commit comments