element/examples/docs/en-US/color.md

131 lines
3.5 KiB
Markdown
Raw Normal View History

<style>
.demo-color-box {
border-radius: 4px;
padding: 20px;
margin: 5px 0;
height: 74px;
box-sizing: border-box;
color: #fff;
font-size: 14px;
& .value {
font-size: 12px;
opacity: 0.69;
line-height: 24px;
}
}
.demo-color-box-group {
.demo-color-box {
border-radius: 0;
margin: 0;
}
.demo-color-box:first-child {
border-radius: 4px 4px 0 0;
}
.demo-color-box:last-child {
border-radius: 0 0 4px 4px;
}
}
.bg-blue {
background-color: #409EFF;
}
.bg-success {
background-color: #13CE66;
}
.bg-warning {
background-color: #f7ba2a;
}
.bg-danger {
background-color: #ff4949;
}
.bg-info {
2017-12-12 04:45:09 +00:00
background-color: #909399;
}
.bg-text-primary {
2017-12-12 04:45:09 +00:00
background-color: #303133;
}
.bg-text-regular {
2017-12-15 05:50:54 +00:00
background-color: #606266;
}
.bg-text-secondary {
2017-12-12 04:45:09 +00:00
background-color: #909399;
}
.bg-text-placeholder {
2017-12-12 04:45:09 +00:00
background-color: #c0c4cc;
}
.bg-border-base {
2017-12-12 04:45:09 +00:00
background-color: #dcdfe6;
}
.bg-border-light {
2017-12-12 04:45:09 +00:00
background-color: #e4e7ed;
}
.bg-border-lighter {
2017-12-12 04:45:09 +00:00
background-color: #ebeef5;
}
.bg-border-extra-light {
2017-12-12 04:45:09 +00:00
background-color: #f2f6fc;
}
[class*=" bg-border-"] {
2017-12-12 04:45:09 +00:00
color: #303133;
}
</style>
## Color
Element uses a specific set of palettes to specify colors to provide a consistent look and feel for the products you build.
### Main Color
The main color of Element is bright and friendly blue.
<el-row :gutter="12">
<el-col :span="6" :xs="{span: 12}">
<div class="demo-color-box bg-blue">Blue<div class="value">#409EFF</div></div>
</el-col>
</el-row>
### Secondary Color
Besides the main color, you need to use different scene colors in different scenarios (for example, dangerous color indicates dangerous operation)
<el-row :gutter="12">
<el-col :span="6" :xs="{span: 12}">
<div class="demo-color-box bg-success">Success<div class="value">#67C23A</div></div>
</el-col>
<el-col :span="6" :xs="{span: 12}">
2017-12-12 04:45:09 +00:00
<div class="demo-color-box bg-warning">Warning<div class="value">#E6A23C</div></div>
</el-col>
<el-col :span="6" :xs="{span: 12}">
2017-12-12 04:45:09 +00:00
<div class="demo-color-box bg-danger">Danger<div class="value">#F56C6C</div></div>
</el-col>
<el-col :span="6" :xs="{span: 12}">
2017-12-12 04:45:09 +00:00
<div class="demo-color-box bg-info">Info<div class="value">#909399</div></div>
</el-col>
</el-row>
### Neutral Color
Neutral colors are for text, background and border colors. You can use different neutral colors to represent the hierarchical structure.
<el-row :gutter="12">
<el-col :span="6" :xs="{span: 12}">
<div class="demo-color-box-group">
2017-12-12 04:45:09 +00:00
<div class="demo-color-box bg-text-primary">Primary Text<div class="value">#303133</div></div>
2017-12-15 05:50:54 +00:00
<div class="demo-color-box bg-text-regular">Regular Text<div class="value">#606266</div></div>
2017-12-12 04:45:09 +00:00
<div class="demo-color-box bg-text-secondary">Secondary Text<div class="value">#909399</div></div>
<div class="demo-color-box bg-text-placeholder">Placeholder Text<div class="value">#C0C4CC</div></div>
</div>
</el-col>
<el-col :span="6" :xs="{span: 12}">
<div class="demo-color-box-group">
2017-12-12 04:45:09 +00:00
<div class="demo-color-box bg-border-base">Base Border<div class="value">#DCDFE6</div></div>
<div class="demo-color-box bg-border-light">Light Border<div class="value">#E4E7ED</div></div>
<div class="demo-color-box bg-border-lighter">Lighter Border<div class="value">#EBEEF5</div></div>
<div class="demo-color-box bg-border-extra-light">Extra Light Border<div class="value">#F2F6FC</div></div>
</div>
</el-col>
</el-row>