chore: add callbackground color

This commit is contained in:
GleidsonDaniel 2023-09-28 10:42:40 -03:00
parent 9ef618890d
commit 01cd8674d9
1 changed files with 6 additions and 5 deletions

View File

@ -20,9 +20,10 @@ const mentions = {
mentionOtherColor: '#F3BE08'
};
const callButtons = {
const videoConfColors = {
cancelCallButton: '#F5455C',
acceptCallButton: '#158D65'
acceptCallButton: '#158D65',
callBackgroundColor: '#151c2e'
};
export const colors = {
@ -103,7 +104,7 @@ export const colors = {
statusFontOnWarning: '#B88D00',
overlayColor: '#1F2329B2',
...mentions,
...callButtons
...videoConfColors
},
dark: {
backgroundColor: '#030b1b',
@ -182,7 +183,7 @@ export const colors = {
statusFontOnWarning: '#B88D00',
overlayColor: '#1F2329B2',
...mentions,
...callButtons
...videoConfColors
},
black: {
backgroundColor: '#000000',
@ -261,7 +262,7 @@ export const colors = {
statusFontOnWarning: '#B88D00',
overlayColor: '#1F2329B2',
...mentions,
...callButtons
...videoConfColors
}
};