UNPKG

react-ui-themes-superflows

Version:
62 lines (55 loc) 1.87 kB
require('react'); var Constants = { DEFAULT: "Default" }; function getTheme(name) { var theme; switch (name) { case Constants.DEFAULT: theme = { dangerColor: '#990000', dangerBackgroundColor: '#FFCCCC', dangerBorderColor: '#FFb3b3', successColor: '#006600', successBackgroundColor: '#d6f5d6', successBorderColor: '#b3ffb3', infoColor: '#4D4D4D', infoBackgroundColor: '#E9E9E9', infoBorderColor: '#DDDDDD', primaryButtonBackgroundColor: '#000000', primaryButtonColor: '#FFFFFF', linkButtonColor: '#000000', linkButtonBackgroundColor: 'transparent', tabColor: '#000000', tabBackgroundColor: '#ffffff', tabUnselectedColor: '#999999', uploadToS3BorderColor: 'transparent', uploadToS3BackgroundColor: 'transparent', uploadToS3TitleColor: 'black', uploadToS3SubtitleColor: 'gray', uploadToS3ChooseColor: 'white', uploadToS3ChooseBackgroundColor: 'black', uploadToS3CancelColor: 'black', uploadToS3CancelBackgroundColor: '#efefef', uploadToS3UploadColor: 'white', uploadToS3UploadBackgroundColor: 'black', commentViewBorderColor: '#cccccc', commentViewBackgroundColor: '#efefef', commentViewMyBackgroundColor: '#efffef', commentViewUserColor: '#000000', commentViewReplyToBackgroundColor: '#cccccc', commentViewReplyToTitleColor: '##666666', commentViewColor: '#333333', commentViewDecorationColor: '#666666', commentViewDecorationHighlightColor: '#000000', discussionViewBackgroundColor: 'transparent' }; break; } return theme; } var exportFunctions = { getTheme: getTheme }; module.exports = exportFunctions; //# sourceMappingURL=index.js.map