{
diff --git a/react/features/salesforce/components/web/SalesforceLinkDialog.tsx b/react/features/salesforce/components/web/SalesforceLinkDialog.tsx
index f8b38a7ef9..bbe33c413e 100644
--- a/react/features/salesforce/components/web/SalesforceLinkDialog.tsx
+++ b/react/features/salesforce/components/web/SalesforceLinkDialog.tsx
@@ -28,7 +28,7 @@ const useStyles = makeStyles()(theme => {
searchIcon: {
display: 'block',
position: 'absolute',
- color: theme.palette.text03,
+ color: theme.palette.salesforceSearchIcon,
left: 16,
top: 10,
width: 20,
@@ -39,16 +39,16 @@ const useStyles = makeStyles()(theme => {
margin: '16px 0 8px'
},
recordsSearch: {
- backgroundColor: theme.palette.field01,
+ backgroundColor: theme.palette.salesforceSearchBackground,
border: '1px solid',
borderRadius: theme.shape.borderRadius,
- borderColor: theme.palette.ui05,
- color: theme.palette.text01,
+ borderColor: theme.palette.salesforceSearchBorder,
+ color: theme.palette.salesforceSearchText,
padding: '10px 16px 10px 44px',
width: '100%',
height: 40,
'&::placeholder': {
- color: theme.palette.text03,
+ color: theme.palette.salesforceSearchPlaceholder,
...theme.typography.bodyShortRegular
}
},
@@ -94,7 +94,7 @@ const useStyles = makeStyles()(theme => {
padding: 0
},
recordInfo: {
- backgroundColor: theme.palette.ui03,
+ backgroundColor: theme.palette.inputFieldBackground,
padding: '0 16px',
borderRadius: theme.shape.borderRadius,
marginBottom: '28px'
@@ -113,9 +113,9 @@ const useStyles = makeStyles()(theme => {
boxSizing: 'border-box',
overflow: 'hidden',
border: '1px solid',
- borderColor: theme.palette.ui05,
- backgroundColor: theme.palette.field01,
- color: theme.palette.text01,
+ borderColor: theme.palette.salesforceSearchBorder,
+ backgroundColor: theme.palette.inputBackground,
+ color: theme.palette.inputText,
borderRadius: theme.shape.borderRadius,
padding: '10px 16px'
}
diff --git a/react/features/settings/components/web/CalendarTab.tsx b/react/features/settings/components/web/CalendarTab.tsx
index 544e4b3018..65e2c2740e 100644
--- a/react/features/settings/components/web/CalendarTab.tsx
+++ b/react/features/settings/components/web/CalendarTab.tsx
@@ -77,7 +77,7 @@ const styles = (theme: Theme) => {
justifyContent: 'center',
textAlign: 'center' as const,
minHeight: '100px',
- color: theme.palette.text01,
+ color: theme.palette.settingsTabText,
...theme.typography.bodyShortRegular
},
diff --git a/react/features/settings/components/web/ModeratorTab.tsx b/react/features/settings/components/web/ModeratorTab.tsx
index cdb52474e8..8a10edb4c2 100644
--- a/react/features/settings/components/web/ModeratorTab.tsx
+++ b/react/features/settings/components/web/ModeratorTab.tsx
@@ -90,7 +90,7 @@ const styles = (theme: Theme) => {
title: {
...theme.typography.heading6,
- color: `${theme.palette.text01} !important`,
+ color: `${theme.palette.settingsTabText} !important`,
marginBottom: theme.spacing(3)
},
diff --git a/react/features/settings/components/web/MoreTab.tsx b/react/features/settings/components/web/MoreTab.tsx
index 4dfad64819..4d94be7cbd 100644
--- a/react/features/settings/components/web/MoreTab.tsx
+++ b/react/features/settings/components/web/MoreTab.tsx
@@ -97,7 +97,7 @@ const styles = (theme: Theme) => {
width: '100%',
height: '1px',
border: 0,
- backgroundColor: theme.palette.ui03
+ backgroundColor: theme.palette.settingsSectionBackground
},
checkbox: {
diff --git a/react/features/settings/components/web/NotificationsTab.tsx b/react/features/settings/components/web/NotificationsTab.tsx
index 317451a87c..f7fb9de147 100644
--- a/react/features/settings/components/web/NotificationsTab.tsx
+++ b/react/features/settings/components/web/NotificationsTab.tsx
@@ -107,7 +107,7 @@ const styles = (theme: Theme) => {
title: {
...theme.typography.heading6,
- color: `${theme.palette.text01} !important`,
+ color: `${theme.palette.settingsTabText} !important`,
marginBottom: theme.spacing(3)
},
diff --git a/react/features/settings/components/web/ProfileTab.tsx b/react/features/settings/components/web/ProfileTab.tsx
index 2428aef3ea..55a500096a 100644
--- a/react/features/settings/components/web/ProfileTab.tsx
+++ b/react/features/settings/components/web/ProfileTab.tsx
@@ -87,7 +87,7 @@ const styles = (theme: Theme) => {
},
label: {
- color: `${theme.palette.text01} !important`,
+ color: `${theme.palette.settingsTabText} !important`,
...theme.typography.bodyShortRegular,
marginBottom: theme.spacing(2)
},
diff --git a/react/features/settings/components/web/ShortcutsTab.tsx b/react/features/settings/components/web/ShortcutsTab.tsx
index 379924b280..dc50bef189 100644
--- a/react/features/settings/components/web/ShortcutsTab.tsx
+++ b/react/features/settings/components/web/ShortcutsTab.tsx
@@ -59,11 +59,11 @@ const styles = (theme: Theme) => {
alignItems: 'center',
padding: `${theme.spacing(1)} 0`,
...theme.typography.bodyShortRegular,
- color: theme.palette.text01
+ color: theme.palette.settingsTabText
},
listItemKey: {
- backgroundColor: theme.palette.ui04,
+ backgroundColor: theme.palette.settingsShortcutKey,
...theme.typography.labelBold,
padding: `${theme.spacing(1)} ${theme.spacing(2)}`,
borderRadius: `${Number(theme.shape.borderRadius) / 2}px`
diff --git a/react/features/settings/components/web/audio/MicrophoneEntry.tsx b/react/features/settings/components/web/audio/MicrophoneEntry.tsx
index b586d5284d..17a70812ec 100644
--- a/react/features/settings/components/web/audio/MicrophoneEntry.tsx
+++ b/react/features/settings/components/web/audio/MicrophoneEntry.tsx
@@ -91,7 +91,7 @@ const useStyles = makeStyles()(theme => {
marginLeft: '6px',
'& svg': {
- fill: theme.palette.iconError
+ fill: theme.palette.settingsErrorIcon
}
},
diff --git a/react/features/settings/components/web/video/VideoSettingsContent.tsx b/react/features/settings/components/web/video/VideoSettingsContent.tsx
index 3bc5286bf5..184473ff76 100644
--- a/react/features/settings/components/web/video/VideoSettingsContent.tsx
+++ b/react/features/settings/components/web/video/VideoSettingsContent.tsx
@@ -96,7 +96,7 @@ const useStyles = makeStyles()(theme => {
},
selectedEntry: {
- border: `2px solid ${theme.palette.action01Hover}`
+ border: `2px solid ${theme.palette.settingsVideoPreviewBorder}`
},
previewVideo: {
@@ -128,7 +128,7 @@ const useStyles = makeStyles()(theme => {
backgroundColor: 'rgba(0, 0, 0, 0.7)',
borderRadius: '4px',
padding: `${theme.spacing(1)} ${theme.spacing(2)}`,
- color: theme.palette.text01,
+ color: theme.palette.settingsTabText,
...theme.typography.labelBold,
width: 'fit-content',
maxwidth: `calc(100% - ${theme.spacing(2)} - ${theme.spacing(2)})`,
diff --git a/react/features/speaker-stats/components/web/SpeakerStats.tsx b/react/features/speaker-stats/components/web/SpeakerStats.tsx
index 0cafe3d275..4cfe6c9911 100644
--- a/react/features/speaker-stats/components/web/SpeakerStats.tsx
+++ b/react/features/speaker-stats/components/web/SpeakerStats.tsx
@@ -33,7 +33,7 @@ const useStyles = makeStyles()(theme => {
speakerStats: {
'& .header': {
position: 'fixed',
- backgroundColor: theme.palette.ui01,
+ backgroundColor: theme.palette.speakerStatsBackground,
paddingLeft: theme.spacing(4),
paddingRight: theme.spacing(4),
marginLeft: `-${theme.spacing(4)}`,
@@ -95,7 +95,7 @@ const useStyles = makeStyles()(theme => {
display: 'flex',
alignItems: 'center',
borderLeftWidth: 1,
- borderLeftColor: theme.palette.ui02,
+ borderLeftColor: theme.palette.speakerStatsBorder,
borderLeftStyle: 'solid',
'& .timeline': {
height: theme.spacing(2),
@@ -127,7 +127,7 @@ const useStyles = makeStyles()(theme => {
height: theme.spacing(1),
display: 'flex',
width: '100%',
- backgroundColor: theme.palette.ui03,
+ backgroundColor: theme.palette.speakerStatsRowAlternate,
position: 'relative',
'& .left-bound': {
position: 'absolute',
@@ -141,7 +141,7 @@ const useStyles = makeStyles()(theme => {
},
'& .handler': {
position: 'absolute',
- backgroundColor: theme.palette.ui09,
+ backgroundColor: theme.palette.speakerStatsHeaderBackground,
height: 12,
marginTop: -4,
display: 'flex',
@@ -159,7 +159,7 @@ const useStyles = makeStyles()(theme => {
width: 'calc(100% + 48px)',
height: 1,
marginLeft: -24,
- backgroundColor: theme.palette.ui02
+ backgroundColor: theme.palette.speakerStatsBorder
}
}
};
diff --git a/react/features/speaker-stats/components/web/SpeakerStatsItem.tsx b/react/features/speaker-stats/components/web/SpeakerStatsItem.tsx
index d2a9977acd..d3969ea84b 100644
--- a/react/features/speaker-stats/components/web/SpeakerStatsItem.tsx
+++ b/react/features/speaker-stats/components/web/SpeakerStatsItem.tsx
@@ -78,7 +78,7 @@ const SpeakerStatsItem = (props: IProps) => {
props.hasLeft ? (
diff --git a/react/features/speaker-stats/components/web/SpeakerStatsList.tsx b/react/features/speaker-stats/components/web/SpeakerStatsList.tsx
index b7e162bfee..829abb06eb 100644
--- a/react/features/speaker-stats/components/web/SpeakerStatsList.tsx
+++ b/react/features/speaker-stats/components/web/SpeakerStatsList.tsx
@@ -16,7 +16,7 @@ const useStyles = makeStyles()(theme => {
height: theme.spacing(8)
},
'& .has-left': {
- color: theme.palette.text03
+ color: theme.palette.speakerStatsLabelText
},
'& .avatar': {
marginRight: theme.spacing(3)
@@ -28,7 +28,7 @@ const useStyles = makeStyles()(theme => {
[theme.breakpoints.down(MOBILE_BREAKPOINT)]: {
...theme.typography.bodyShortRegularLarge
},
- backgroundColor: theme.palette.ui02
+ backgroundColor: theme.palette.speakerStatsRowBackground
},
'& .display-name': {
...theme.typography.bodyShortRegular,
@@ -37,7 +37,7 @@ const useStyles = makeStyles()(theme => {
}
},
'& .dominant': {
- backgroundColor: theme.palette.success02
+ backgroundColor: theme.palette.speakerStatsSuccessBar
}
}
diff --git a/react/features/speaker-stats/components/web/SpeakerStatsSearch.tsx b/react/features/speaker-stats/components/web/SpeakerStatsSearch.tsx
index a807a87f04..9d991695e5 100644
--- a/react/features/speaker-stats/components/web/SpeakerStatsSearch.tsx
+++ b/react/features/speaker-stats/components/web/SpeakerStatsSearch.tsx
@@ -20,7 +20,7 @@ const useStyles = makeStyles()(theme => {
[theme.breakpoints.down(MOBILE_BREAKPOINT)]: {
display: 'block',
position: 'absolute',
- color: theme.palette.text03,
+ color: theme.palette.speakerStatsSearchPlaceholder,
left: 16,
top: 13,
width: 20,
@@ -28,16 +28,16 @@ const useStyles = makeStyles()(theme => {
}
},
speakerStatsSearch: {
- backgroundColor: theme.palette.field01,
+ backgroundColor: theme.palette.speakerStatsSearchBackground,
border: '1px solid',
borderRadius: 6,
- borderColor: theme.palette.ui05,
- color: theme.palette.text01,
+ borderColor: theme.palette.speakerStatsSearchBorder,
+ color: theme.palette.speakerStatsSearchText,
padding: '10px 16px',
width: '100%',
height: 40,
'&::placeholder': {
- color: theme.palette.text03,
+ color: theme.palette.speakerStatsSearchPlaceholder,
...theme.typography.bodyShortRegular
},
[theme.breakpoints.down(MOBILE_BREAKPOINT)]: {
@@ -103,7 +103,7 @@ function SpeakerStatsSearch({ onSearch }: IProps) {
{
return {
itemContainer: {
display: 'flex',
- color: theme.palette.text02,
+ color: theme.palette.dialogSecondaryText,
alignItems: 'center',
fontSize: '0.875rem',
cursor: 'pointer',
padding: '5px 0',
'&:hover': {
- backgroundColor: theme.palette.ui04
+ backgroundColor: theme.palette.languageSelectorHover
}
},
iconWrapper: {
diff --git a/react/features/subtitles/components/web/LanguageSelector.tsx b/react/features/subtitles/components/web/LanguageSelector.tsx
index a1b4b981ce..9ea9d1bc58 100644
--- a/react/features/subtitles/components/web/LanguageSelector.tsx
+++ b/react/features/subtitles/components/web/LanguageSelector.tsx
@@ -28,7 +28,7 @@ const useStyles = makeStyles()(theme => {
},
label: {
...theme.typography.bodyShortRegular,
- color: theme.palette.text01,
+ color: theme.palette.languageSelectorText,
whiteSpace: 'nowrap'
}
};
diff --git a/react/features/subtitles/components/web/LanguageSelectorDialog.tsx b/react/features/subtitles/components/web/LanguageSelectorDialog.tsx
index 84dbf85751..62be88dd4e 100644
--- a/react/features/subtitles/components/web/LanguageSelectorDialog.tsx
+++ b/react/features/subtitles/components/web/LanguageSelectorDialog.tsx
@@ -19,14 +19,14 @@ const useStyles = makeStyles()(theme => {
paragraphWrapper: {
fontSize: '0.875rem',
margin: '10px 0px',
- color: theme.palette.text01
+ color: theme.palette.dialogText
},
spanWrapper: {
fontWeight: 700,
cursor: 'pointer',
color: theme.palette.link01,
'&:hover': {
- backgroundColor: theme.palette.ui04,
+ backgroundColor: theme.palette.languageSelectorHover,
color: theme.palette.link01Hover
}
}
diff --git a/react/features/toolbox/components/web/Drawer.tsx b/react/features/toolbox/components/web/Drawer.tsx
index a3b4cac47e..bcd354b194 100644
--- a/react/features/toolbox/components/web/Drawer.tsx
+++ b/react/features/toolbox/components/web/Drawer.tsx
@@ -44,7 +44,7 @@ const useStyles = makeStyles()(theme => {
},
drawer: {
- backgroundColor: theme.palette.ui01,
+ backgroundColor: theme.palette.drawerBackground,
maxHeight: `calc(${DRAWER_MAX_HEIGHT})`,
borderRadius: '24px 24px 0 0',
overflowY: 'auto',
@@ -64,7 +64,7 @@ const useStyles = makeStyles()(theme => {
height: '48px',
padding: '12px 16px',
alignItems: 'center',
- color: theme.palette.text01,
+ color: theme.palette.overflowMenuItemText,
cursor: 'pointer',
display: 'flex',
fontSize: '1rem',
@@ -72,12 +72,34 @@ const useStyles = makeStyles()(theme => {
'& div': {
display: 'flex',
flexDirection: 'row',
- alignItems: 'center'
+ alignItems: 'center',
+
+ '& svg': {
+ fill: theme.palette.overflowMenuItemIcon
+ }
+ },
+
+ '& > svg': {
+ fill: theme.palette.overflowMenuItemIcon
+ },
+
+ '@media (hover: hover) and (pointer: fine)': {
+ '&:hover': {
+ backgroundColor: theme.palette.overflowMenuItemHover,
+
+ '& svg': {
+ fill: theme.palette.overflowMenuItemIcon
+ }
+ }
},
'&.disabled': {
cursor: 'initial',
- color: '#3b475c'
+ color: theme.palette.overflowMenuItemDisabled,
+
+ '& svg': {
+ fill: theme.palette.overflowMenuItemDisabled
+ }
}
}
}
diff --git a/react/features/toolbox/components/web/JitsiPortal.tsx b/react/features/toolbox/components/web/JitsiPortal.tsx
index 5dbf868124..6caae9b491 100644
--- a/react/features/toolbox/components/web/JitsiPortal.tsx
+++ b/react/features/toolbox/components/web/JitsiPortal.tsx
@@ -32,7 +32,7 @@ const useStyles = makeStyles()(theme => {
'&::after': {
content: '""',
- backgroundColor: theme.palette.ui01,
+ backgroundColor: theme.palette.toolboxBackground,
marginBottom: 'env(safe-area-inset-bottom, 0)'
}
}
diff --git a/react/features/video-menu/components/web/ParticipantContextMenu.tsx b/react/features/video-menu/components/web/ParticipantContextMenu.tsx
index c9860e804a..521b9fe599 100644
--- a/react/features/video-menu/components/web/ParticipantContextMenu.tsx
+++ b/react/features/video-menu/components/web/ParticipantContextMenu.tsx
@@ -107,7 +107,7 @@ interface IProps {
const useStyles = makeStyles()(theme => {
return {
text: {
- color: theme.palette.text02,
+ color: theme.palette.videoMenuText,
padding: '10px 16px',
height: '40px',
overflow: 'hidden',
diff --git a/react/features/video-menu/components/web/VolumeSlider.tsx b/react/features/video-menu/components/web/VolumeSlider.tsx
index 0dc0e8c8ec..265b531583 100644
--- a/react/features/video-menu/components/web/VolumeSlider.tsx
+++ b/react/features/video-menu/components/web/VolumeSlider.tsx
@@ -37,7 +37,7 @@ const useStyles = makeStyles()(theme => {
padding: '10px 16px',
'&:hover': {
- backgroundColor: theme.palette.ui02
+ backgroundColor: theme.palette.videoMenuSliderBackground
}
},
diff --git a/react/features/video-quality/components/Slider.web.tsx b/react/features/video-quality/components/Slider.web.tsx
index 446e0a88cc..064bc72a46 100644
--- a/react/features/video-quality/components/Slider.web.tsx
+++ b/react/features/video-quality/components/Slider.web.tsx
@@ -44,7 +44,7 @@ const useStyles = makeStyles()(theme => {
height
};
const inputThumb = {
- background: theme.palette.text01,
+ background: theme.palette.sliderKnob,
border: 0,
borderRadius: '50%',
height: 24,
@@ -52,7 +52,7 @@ const useStyles = makeStyles()(theme => {
};
const focused = {
- outline: `1px solid ${theme.palette.ui06}`
+ outline: `1px solid ${theme.palette.sliderFocus}`
};
return {
@@ -72,14 +72,14 @@ const useStyles = makeStyles()(theme => {
width: '100%'
},
knob: {
- background: theme.palette.text01,
+ background: theme.palette.sliderKnob,
borderRadius: '50%',
display: 'inline-block',
height,
width: 6
},
track: {
- background: theme.palette.text03,
+ background: theme.palette.sliderTrack,
borderRadius: Number(theme.shape.borderRadius) / 2,
height
},
diff --git a/react/features/video-quality/components/VideoQualitySlider.web.tsx b/react/features/video-quality/components/VideoQualitySlider.web.tsx
index aa2683e33e..9545bdf85a 100644
--- a/react/features/video-quality/components/VideoQualitySlider.web.tsx
+++ b/react/features/video-quality/components/VideoQualitySlider.web.tsx
@@ -88,14 +88,14 @@ interface IProps extends WithTranslation {
const styles = (theme: Theme) => {
return {
dialog: {
- color: theme.palette.text01
+ color: theme.palette.videoQualityText
},
dialogDetails: {
...theme.typography.bodyShortRegularLarge,
marginBottom: 16
},
dialogContents: {
- background: theme.palette.ui01,
+ background: theme.palette.videoQualityBackground,
padding: '16px 16px 48px 16px'
},
sliderDescription: {
diff --git a/react/features/virtual-background/components/VirtualBackgroundPreview.tsx b/react/features/virtual-background/components/VirtualBackgroundPreview.tsx
index be310d6db4..684006093e 100644
--- a/react/features/virtual-background/components/VirtualBackgroundPreview.tsx
+++ b/react/features/virtual-background/components/VirtualBackgroundPreview.tsx
@@ -85,7 +85,7 @@ const styles = (theme: Theme) => {
marginBottom: theme.spacing(3),
zIndex: 2,
borderRadius: '3px',
- backgroundColor: theme.palette.uiBackground,
+ backgroundColor: theme.palette.virtualBackgroundPreview,
position: 'relative' as const
},
diff --git a/react/features/virtual-background/components/VirtualBackgrounds.tsx b/react/features/virtual-background/components/VirtualBackgrounds.tsx
index 8604c4d689..23038381b4 100644
--- a/react/features/virtual-background/components/VirtualBackgrounds.tsx
+++ b/react/features/virtual-background/components/VirtualBackgrounds.tsx
@@ -107,7 +107,7 @@ const useStyles = makeStyles()(theme => {
justifyContent: 'center',
textAlign: 'center',
...theme.typography.labelBold,
- color: theme.palette.text01,
+ color: theme.palette.virtualBackgroundText,
objectFit: 'cover',
[[ '&:hover', '&:focus' ] as any]: {
@@ -129,7 +129,7 @@ const useStyles = makeStyles()(theme => {
},
noneThumbnail: {
- backgroundColor: theme.palette.ui04
+ backgroundColor: theme.palette.virtualBackgroundBorder
},
slightBlur: {
@@ -156,7 +156,7 @@ const useStyles = makeStyles()(theme => {
position: 'absolute',
top: '3px',
right: '3px',
- background: theme.palette.ui03,
+ background: theme.palette.virtualBackgroundBorder,
borderRadius: '3px',
cursor: 'pointer',
display: 'none',
diff --git a/react/features/visitors/components/web/VisitorsCountLabel.tsx b/react/features/visitors/components/web/VisitorsCountLabel.tsx
index edc6ee585d..c14ecd8c70 100644
--- a/react/features/visitors/components/web/VisitorsCountLabel.tsx
+++ b/react/features/visitors/components/web/VisitorsCountLabel.tsx
@@ -11,8 +11,8 @@ import { getVisitorsCount, getVisitorsShortText } from '../../functions';
const useStyles = makeStyles()(theme => {
return {
label: {
- backgroundColor: theme.palette.warning02,
- color: theme.palette.uiBackground
+ backgroundColor: theme.palette.visitorsCountBadge,
+ color: theme.palette.visitorsCountText
}
};
});
@@ -28,7 +28,7 @@ const VisitorsCountLabel = () => {
) : null;
diff --git a/react/features/visitors/components/web/VisitorsQueue.tsx b/react/features/visitors/components/web/VisitorsQueue.tsx
index 8f430ebc11..81c179f0cf 100644
--- a/react/features/visitors/components/web/VisitorsQueue.tsx
+++ b/react/features/visitors/components/web/VisitorsQueue.tsx
@@ -14,7 +14,7 @@ const useStyles = makeStyles()(theme => {
position: 'absolute',
inset: '0 0 0 0',
display: 'flex',
- backgroundColor: theme.palette.ui01,
+ backgroundColor: theme.palette.visitorsQueueBackground,
zIndex: 252,
'@media (max-width: 720px)': {
@@ -57,7 +57,7 @@ const useStyles = makeStyles()(theme => {
},
roomName: {
...theme.typography.heading5,
- color: theme.palette.text01,
+ color: theme.palette.visitorsQueueText,
marginBottom: theme.spacing(4),
overflow: 'hidden',
textAlign: 'center',
diff --git a/react/features/welcome/constants.tsx b/react/features/welcome/constants.tsx
index a9b0664e70..0d4482327d 100644
--- a/react/features/welcome/constants.tsx
+++ b/react/features/welcome/constants.tsx
@@ -5,8 +5,8 @@ import BaseTheme from '../base/ui/components/BaseTheme';
import TabIcon from './components/TabIcon';
-export const ACTIVE_TAB_COLOR = BaseTheme.palette.icon01;
-export const INACTIVE_TAB_COLOR = BaseTheme.palette.icon03;
+export const ACTIVE_TAB_COLOR = BaseTheme.palette.welcomeTabActive;
+export const INACTIVE_TAB_COLOR = BaseTheme.palette.welcomeTabInactive;
export const tabBarOptions = {
tabBarActiveTintColor: ACTIVE_TAB_COLOR,
@@ -15,7 +15,7 @@ export const tabBarOptions = {
fontSize: 12,
},
tabBarStyle: {
- backgroundColor: BaseTheme.palette.ui01
+ backgroundColor: BaseTheme.palette.welcomeCard
}
};