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

58 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-10-21 20:52:02 +08:00
const colorWhite = '#FFF';
const colorOffWhite = '#F3F6F9';
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-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-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-21 20:52:02 +08:00
const listItemBgHover = '#DCE4ED';
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-10-26 20:37:26 +08:00
const toolbarButtonColor = btnDefaultColor;
2021-10-28 19:58:39 +08:00
const userThumbnailBorder = colorGrayLight;
2021-10-26 20:37:26 +08:00
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,
colorGray,
2021-10-21 20:52:02 +08:00
colorGrayDark,
colorGrayLight,
2021-10-21 00:53:08 +08:00
colorGrayLighter,
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-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-21 20:52:02 +08:00
listItemBgHover,
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-21 20:52:02 +08:00
};