upgrade demo primary-color

This commit is contained in:
afc163 2016-11-13 18:57:45 +08:00
parent 2c9339039c
commit ca9ed27445
6 changed files with 6 additions and 6 deletions

View File

@ -108,7 +108,7 @@ ReactDOM.render(
}
.event-normal {
color: #2db7f5;
color: #108ee9;
}
.event-error {

View File

@ -103,7 +103,7 @@ ul.anticons-list li:after {
content: "Copied!";
text-align: center;
line-height: 110px;
color: #2db7f5;
color: #108ee9;
transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
opacity: 0;
}

View File

@ -104,7 +104,7 @@ ul.anticons-list li:after {
content: "Copied!";
text-align: center;
line-height: 110px;
color: #2db7f5;
color: #108ee9;
transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
opacity: 0;
}

View File

@ -20,7 +20,7 @@ const openNotification = function () {
notification.open({
message: 'Notification Title',
description: 'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
icon: <Icon type="smile-circle" style={{ color: '#2db7f5' }} />,
icon: <Icon type="smile-circle" style={{ color: '#108ee9' }} />,
});
};

View File

@ -5,7 +5,7 @@ import { Circle } from 'rc-progress';
import classNames from 'classnames';
import splitObject from '../_util/splitObject';
const statusColorMap = {
normal: '#2db7f5',
normal: '#108ee9',
exception: '#ff5500',
success: '#87d068',
};

View File

@ -20,7 +20,7 @@ ReactDOM.render(
<div>
<Tag color="#f50">#f50</Tag>
<Tag color="#87d068">#87d068</Tag>
<Tag color="#2db7f5">#2db7f5</Tag>
<Tag color="#108ee9">#108ee9</Tag>
</div>,
mountNode
);