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

17 lines
304 B
JavaScript
Raw Normal View History

2021-10-21 04:29:23 +08:00
const colorPrimary = '#0F70D7';
2021-10-20 22:17:16 +08:00
const colorOffWhite = '#F3F6F9'
const colorGray = '#4E5A66';
2021-10-21 00:53:08 +08:00
const colorGrayLighter = '#A7B3BD';
2021-10-20 22:17:16 +08:00
const userListBg = colorOffWhite;
const userListText = colorGray;
export {
2021-10-21 04:29:23 +08:00
colorPrimary,
2021-10-21 00:32:27 +08:00
colorOffWhite,
colorGray,
2021-10-21 00:53:08 +08:00
colorGrayLighter,
2021-10-21 00:32:27 +08:00
userListBg,
userListText,
2021-10-20 22:17:16 +08:00
}