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

101 lines
2.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-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';
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-10-28 19:58:39 +08:00
const btnPrimaryBorder = colorPrimary;
2021-11-03 01:11:41 +08:00
const btnDefaultBg = colorWhite;
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-03 01:11:41 +08:00
2021-11-04 20:49:04 +08:00
const pollStatsBorderColor = '#d4d9df';
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-10-21 20:52:02 +08:00
colorPrimary,
colorDanger,
2021-10-27 20:51:44 +08:00
colorSuccess,
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-10-28 19:58:39 +08:00
btnPrimaryBorder,
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-10-21 20:52:02 +08:00
};