ant-design/docs/spec/colors.md

211 lines
6.8 KiB
Markdown
Raw Normal View History

2016-03-31 14:17:09 +08:00
---
category:
zh-CN: 设计基础
en-US: Design Fundamental
2016-03-31 14:17:09 +08:00
order: 2
2016-09-21 11:28:38 +08:00
title:
zh-CN: 色彩
en-US: Colors
2016-03-31 14:17:09 +08:00
---
2015-08-05 17:35:52 +08:00
2015-08-14 20:10:17 +08:00
## 有意义的色彩
2015-08-05 17:35:52 +08:00
2016-07-05 15:51:56 +08:00
色彩在界面设计中的使用应同时具备品牌识别性以及界面设计功能性。色彩是相当感性的东西,设计中对色彩的运用首要应考虑到品牌层面的表达,另外很重要的一点是色彩的运用应达到信息传递,动作指引,交互反馈,或是强化和凸现某一个元素的目的。任何颜色的选取和使用应该是有意义的。
2015-08-05 17:35:52 +08:00
2016-03-14 16:18:06 +08:00
## Ant Design Colors
2015-08-05 17:35:52 +08:00
Ant Design 的色板由 8 种基本色彩组成,通过一套[精心设计的色彩算法](https://github.com/ant-design/ant-design/blob/734beb84ffc3f0469fbae1566aa8450f966cb261/components/style/color/colorPalette.less),每种基本色又自动衍生出 10 种渐变色,其中第 6 种为基本色。
> 我们结合了色彩加白、加黑、加深,贝塞尔曲线,以及针对冷暖色的不同旋转角度,调教出一套色彩算法。使用者只需指定主色,便可导出一条完整的渐变色板。
2015-08-05 17:35:52 +08:00
2016-03-03 17:23:08 +08:00
`````__react
2016-03-04 09:55:03 +08:00
const Palette = React.createClass({
2015-08-05 17:35:52 +08:00
render() {
const { name, description, color } = this.props.color;
const colors = [];
for (let i = 1; i <= 10; i++) {
colors.push(
<div
key={i}
className={`main-color-item palatte-${name}-${i}`}
style={{
color: i > 5 ? '#fff' : 'unset',
fontWeight: i === 6 ? 'bold' : 'normal',
}}
>
{name}-{i}
</div>
);
}
return (
<div className="color-palette">
<div className="color-title">
{name}
<span className="color-description">{description}</span>
</div>
<div className="main-color">{colors}</div>
2015-08-14 20:10:17 +08:00
</div>
);
2015-08-05 17:35:52 +08:00
}
});
2016-03-04 09:55:03 +08:00
const ExtendPalettes = React.createClass({
2015-08-05 17:35:52 +08:00
render() {
2016-03-04 09:55:03 +08:00
const colors = [
2015-08-14 20:10:17 +08:00
{
name: 'red',
description: '热情、警示',
2015-08-14 20:10:17 +08:00
},
{
name: 'green',
description: '成功、通过、安全',
2015-08-14 20:10:17 +08:00
},
{
name: 'blue',
description: '专业、科技',
2015-08-14 20:10:17 +08:00
},
{
name: 'pink',
description: '典雅、明快、女性',
2015-08-14 20:10:17 +08:00
},
{
name: 'orange',
description: '醒目、温暖',
2015-08-14 20:10:17 +08:00
},
{
name: 'purple',
description: '高雅、浪漫',
2015-08-14 20:10:17 +08:00
},
{
name: 'yellow',
description: '活力、提示',
2015-08-14 20:10:17 +08:00
},
{
name: 'cyan',
description: '清新、冷静、结构化',
2015-08-14 20:10:17 +08:00
}
];
return (
<div>
{colors.map((color, i) => <Palette key={color.name} color={color} />)}
</div>
);
2015-08-05 17:35:52 +08:00
}
});
2016-03-04 09:55:03 +08:00
ReactDOM.render(<ExtendPalettes key="palettes" />, mountNode);
2015-08-05 17:35:52 +08:00
`````
2016-03-03 17:23:08 +08:00
## 色彩和交互
2016-03-03 17:23:08 +08:00
设计元素本身由于交互行为会引发一系列细微的视觉变化,而元素本身的颜色变化有时也能很好的实现这一目的。在进行这类设计的同时,建议采取在颜色上添加黑色或者白色并按照 `n+5%` 的规律递增的方式来实现。以下图为例,当鼠标 hover 某个特定元素,就视为浮起,对应颜色就相应增加白色叠加,相反点击的行为可以理解为按下去,在颜色上就相应的增加黑色的叠加。
2016-03-03 17:23:08 +08:00
<img src="https://t.alipayobjects.com/images/T1ZHxhXdNmXXXXXXXX.png" width="100%">
2016-03-03 17:23:08 +08:00
<img src="https://t.alipayobjects.com/images/T1fZJhXahgXXXXXXXX.png" width="100%">
2016-03-03 17:23:08 +08:00
## 色彩识别
2016-03-03 17:23:08 +08:00
合适的色彩对比为信息传达加分,同时也应放考虑到有颜色识别障碍人群的需求。我们将每种主色衍生出来的颜色进行了打标,在考虑对比颜色的选择时建议两种颜色对应标签数值的差要大于等于 5。
2016-03-03 17:23:08 +08:00
<img src="https://t.alipayobjects.com/images/rmsweb/T1hLphXgXcXXXXXXXX.png" width="100%">
<img src="https://t.alipayobjects.com/images/rmsweb/T1v2phXj8bXXXXXXXX.png" width="100%">
## 色彩换算工具
> 正数为变淡 `tint` ,负数为加深 `shade`。
`````__react
2016-03-04 09:55:03 +08:00
const Values = require('values.js');
const CopyToClipboard = require('react-copy-to-clipboard');
2016-09-11 15:07:05 +08:00
const classNames = require('classnames');
const antd = require('antd');
2016-03-04 09:55:03 +08:00
const Button = antd.Button;
const InputNumber = antd.InputNumber;
const Slider = antd.Slider;
const Tooltip = antd.Tooltip;
const TintShadeTool = React.createClass({
getInitialState() {
return {
2015-11-04 16:55:02 +08:00
result: '#2db7f5',
color: '#2db7f5',
2015-11-08 15:01:00 +08:00
justCopied: false,
2015-12-04 17:39:35 +08:00
darkBackground: false,
value: 80
};
},
handleChangeColor(e) {
this.setState({
color: e.target.value
}, this.calculate);
},
handleChangeValue(value) {
this.setState({
value: value
}, this.calculate);
},
componentDidMount() {
this.calculate();
},
calculate() {
2015-10-19 16:54:32 +08:00
if (this.state.value === 0) {
this.setState({
result: this.state.color
});
return;
}
2016-03-04 09:55:03 +08:00
const tintOrShade = this.state.value > 0 ? 'tint' : 'shade';
const c = new Values(this.state.color);
const resultColor = c[tintOrShade](Math.abs(this.state.value));
this.setState({
2015-12-04 17:39:35 +08:00
result: '#' + resultColor.hex,
darkBackground: resultColor.getBrightness() < 50
});
},
2015-11-04 13:17:56 +08:00
copySuccess(e) {
2015-11-08 15:01:00 +08:00
this.setState({ justCopied: true }, () => {
setTimeout(() => {
this.setState({ justCopied: false });
}, 1000);
});
2015-11-04 13:17:56 +08:00
},
render() {
2016-03-04 09:55:03 +08:00
const marks = {
2015-11-18 17:44:53 +08:00
'-100': '加黑',
2015-11-18 19:35:38 +08:00
'0': '原色',
2015-11-18 17:44:53 +08:00
'100': '加白'
};
2016-09-11 15:07:05 +08:00
const className = classNames({
'color-block': true,
copied: this.state.justCopied,
dark: this.state.darkBackground,
});
return <div style={{margin: '40px 0'}}>
<div>
2015-12-18 11:33:27 +08:00
<Tooltip title="点击色块复制色值">
2016-09-11 15:07:05 +08:00
<CopyToClipboard
className={className}
onCopy={this.copySuccess}
text={this.state.result}
>
<div style={{backgroundColor: this.state.result}} />
2015-12-18 11:33:27 +08:00
</CopyToClipboard>
</Tooltip>
2015-11-04 16:55:02 +08:00
<span style={{width: 188, display: 'inline-block', fontFamily: 'Consolas'}}>{this.state.result}</span>
2015-10-26 20:34:42 +08:00
<input className="ant-input" style={{width: 80, color: this.state.color, marginRight: 8}} value={this.state.color} onChange={this.handleChangeColor} />
<InputNumber style={{width: 70}} value={this.state.value} onChange={this.handleChangeValue} min={-100} max={100} step={5} />
<span style={{margin: '0 0 0 8px'}}>%</span>
</div>
2015-11-18 17:44:53 +08:00
<div style={{width: 420, margin: '40px 10px 60px'}}>
<Slider value={this.state.value} onChange={this.handleChangeValue} min={-100} max={100} step={5} marks={marks} />
</div>
</div>;
}
});
2016-03-04 09:55:03 +08:00
ReactDOM.render(<TintShadeTool key="tintShadeTool" />, mountNode);
`````
2015-11-08 15:01:00 +08:00
2016-03-03 17:23:08 +08:00
Ant Design 专用色彩换算工具,用于解析类似 `#2db7f5 tint 80%` 的色彩标注。
less 或 scss 语言可以直接使用 `tint(#2db7f5, 80%)``shade(#2db7f5, 80%)` 的语法。