bigbluebutton-Github/bigbluebutton-html5/imports/ui/stylesheets/styled-components/palette.js

190 lines
4.3 KiB
JavaScript
Raw Normal View History

2021-10-21 20:52:02 +08:00
const colorWhite = '#FFF';
const colorOffWhite = '#F3F6F9';
2021-11-03 22:34:03 +08:00
const colorBlack = '#000000';
2021-10-20 22:17:16 +08:00
const colorGray = '#4E5A66';
2021-10-21 20:52:02 +08:00
const colorGrayDark = '#06172A';
const colorGrayLight = '#8B9AA8';
2021-10-21 00:53:08 +08:00
const colorGrayLighter = '#A7B3BD';
2021-10-28 01:48:15 +08:00
const colorGrayLightest = '#D4D9DF';
2021-10-20 22:17:16 +08:00
2021-10-26 20:37:26 +08:00
const colorBlueLight = '#54a1f3';
2021-10-21 20:52:02 +08:00
const colorBlueLighter = '#92BCEA';
2021-11-08 21:09:56 +08:00
const colorBlueLightest = '#E4ECF2';
2021-10-21 20:52:02 +08:00
2021-10-26 22:48:18 +08:00
const colorTransparent = '#ff000000';
2021-10-21 20:52:02 +08:00
const colorPrimary = '#0F70D7';
const colorDanger = '#DF2721';
2021-10-27 20:51:44 +08:00
const colorSuccess = '#008081';
const colorWarning = 'purple';
2021-11-10 22:41:55 +08:00
const colorOffline = colorGrayLight;
const colorMuted = '#586571';
const colorMutedBackground = '#F3F6F9';
2021-10-21 20:52:02 +08:00
2021-10-26 20:37:26 +08:00
const colorBackground = colorGrayDark;
2021-10-20 22:17:16 +08:00
const userListBg = colorOffWhite;
const userListText = colorGray;
2021-10-21 20:52:02 +08:00
const unreadMessagesBg = colorDanger;
2021-10-26 20:37:26 +08:00
const colorGrayLabel = colorGray;
2021-10-27 03:50:59 +08:00
const colorText = colorGray;
2021-10-30 01:10:20 +08:00
const colorLink = colorPrimary;
2021-10-21 20:52:02 +08:00
const listItemBgHover = '#DCE4ED';
2021-10-28 01:07:09 +08:00
const colorTipBg = '#333333';
2021-10-21 20:52:02 +08:00
const itemFocusBorder = colorBlueLighter;
2021-10-20 22:17:16 +08:00
2021-10-26 20:37:26 +08:00
const btnDefaultColor = colorGray;
2021-11-03 01:11:41 +08:00
const btnDefaultBg = colorWhite;
2021-11-10 22:41:55 +08:00
const btnDefaultBorder = colorWhite;
const btnPrimaryBorder = colorPrimary;
const btnPrimaryColor = colorWhite;
const btnPrimaryBg = colorPrimary;
const btnSuccessBorder = colorSuccess;
const btnSuccessColor = colorWhite;
const btnSuccessBg = colorSuccess;
const btnWarningBorder = colorWarning;
const btnWarningColor = colorWhite;
const btnWarningBg = colorWarning;
const btnDangerBorder = colorDanger;
const btnDangerColor = colorWhite;
const btnDangerBg = colorDanger;
const btnDarkBorder = colorDanger;
const btnDarkColor = colorWhite;
const btnDarkBg = colorGrayDark;
const btnOfflineBorder = colorOffline;
const btnOfflineColor = colorWhite;
const btnOfflineBg = colorOffline;
const btnMutedBorder = colorMutedBackground;
const btnMutedColor = colorMuted;
const btnMutedBg = colorMutedBackground;
2021-10-26 20:37:26 +08:00
const toolbarButtonColor = btnDefaultColor;
2021-10-28 19:58:39 +08:00
const userThumbnailBorder = colorGrayLight;
2021-10-29 01:58:04 +08:00
const loaderBg = colorGrayDark;
const loaderBullet = colorWhite;
2021-10-26 20:37:26 +08:00
const systemMessageBackgroundColor = '#F9FBFC';
const systemMessageBorderColor = '#C5CDD4';
const systemMessageFontColor = colorGrayDark;
const colorHeading = colorGrayDark;
const palettePlaceholderText = '#787675';
const pollAnnotationGray = '#333333';
2021-11-03 01:11:41 +08:00
const toolbarButtonBorderColor = colorGrayLighter;
const toolbarListColor = colorGray;
const toolbarButtonBg = btnDefaultBg;
const toolbarListBg = '#DDD';
2021-11-03 01:27:25 +08:00
const toolbarListBgFocus = '#C6C6C6';
2021-11-06 00:36:03 +08:00
const colorContentBackground = '#1B2A3A';
2021-11-03 01:11:41 +08:00
2021-11-06 03:59:01 +08:00
const dropdownBg = colorWhite;
2021-11-03 01:11:41 +08:00
2021-11-04 22:19:38 +08:00
const pollStatsBorderColor = '#D4D9DF';
const pollBlue = '#1A73D4';
2021-11-03 01:11:41 +08:00
2021-11-11 04:31:00 +08:00
const toastDefaultColor = colorWhite;
const toastDefaultBg = colorGray;
const toastInfoColor = colorWhite;
const toastInfoBg = colorPrimary;
const toastSuccessColor = colorWhite;
const toastSuccessBg = colorSuccess;
const toastErrorColor = colorWhite;
const toastErrorBg = colorDanger;
const toastWarningColor = colorWhite;
const toastWarningBg = colorWarning;
2021-10-20 22:17:16 +08:00
export {
2021-10-21 20:52:02 +08:00
colorWhite,
2021-10-21 00:32:27 +08:00
colorOffWhite,
2021-11-03 22:34:03 +08:00
colorBlack,
2021-10-21 00:32:27 +08:00
colorGray,
2021-10-21 20:52:02 +08:00
colorGrayDark,
colorGrayLight,
2021-10-21 00:53:08 +08:00
colorGrayLighter,
2021-10-28 01:48:15 +08:00
colorGrayLightest,
2021-10-26 22:48:18 +08:00
colorTransparent,
2021-10-26 20:37:26 +08:00
colorBlueLight,
colorBlueLighter,
2021-11-08 21:09:56 +08:00
colorBlueLightest,
2021-10-21 20:52:02 +08:00
colorPrimary,
colorDanger,
2021-10-27 20:51:44 +08:00
colorSuccess,
colorWarning,
2021-10-26 20:37:26 +08:00
colorBackground,
2021-10-21 00:32:27 +08:00
userListBg,
userListText,
2021-10-21 20:52:02 +08:00
unreadMessagesBg,
2021-10-26 20:37:26 +08:00
colorGrayLabel,
2021-10-27 03:50:59 +08:00
colorText,
2021-10-30 01:10:20 +08:00
colorLink,
2021-10-21 20:52:02 +08:00
listItemBgHover,
2021-10-28 01:07:09 +08:00
colorTipBg,
2021-10-21 20:52:02 +08:00
itemFocusBorder,
2021-10-26 20:37:26 +08:00
btnDefaultColor,
2021-11-10 22:41:55 +08:00
btnDefaultBg,
btnDefaultBorder,
2021-10-28 19:58:39 +08:00
btnPrimaryBorder,
2021-11-10 22:41:55 +08:00
btnPrimaryColor,
btnPrimaryBg,
btnSuccessBorder,
btnSuccessColor,
btnSuccessBg,
btnWarningBorder,
btnWarningColor,
btnWarningBg,
btnDangerBorder,
btnDangerColor,
btnDangerBg,
btnDarkBorder,
btnDarkColor,
btnDarkBg,
btnOfflineBorder,
btnOfflineColor,
btnOfflineBg,
btnMutedBorder,
btnMutedColor,
btnMutedBg,
2021-10-26 20:37:26 +08:00
toolbarButtonColor,
2021-10-28 19:58:39 +08:00
userThumbnailBorder,
2021-10-29 01:58:04 +08:00
loaderBg,
loaderBullet,
systemMessageBackgroundColor,
systemMessageBorderColor,
systemMessageFontColor,
colorHeading,
palettePlaceholderText,
pollAnnotationGray,
2021-11-03 01:11:41 +08:00
toolbarButtonBorderColor,
toolbarListColor,
toolbarButtonBg,
toolbarListBg,
2021-11-03 01:27:25 +08:00
toolbarListBgFocus,
2021-11-04 20:49:04 +08:00
pollStatsBorderColor,
2021-11-04 22:19:38 +08:00
pollBlue,
2021-11-06 00:36:03 +08:00
colorContentBackground,
2021-11-06 03:59:01 +08:00
dropdownBg,
2021-11-11 04:31:00 +08:00
toastDefaultColor,
toastDefaultBg,
toastInfoColor,
toastInfoBg,
toastSuccessColor,
toastSuccessBg,
toastErrorColor,
toastErrorBg,
toastWarningColor,
toastWarningBg,
2021-10-21 20:52:02 +08:00
};