📅  最后修改于: 2023-12-03 15:17:31.634000             🧑  作者: Mango
Man Bat Color是一个开源的调色板库,其灵感来自于蝙蝠侠系列中的敌人Man Bat的颜色。
npm install man-bat-color --save
或者使用Yarn:
yarn add man-bat-color
<link rel="stylesheet" href="path/to/man-bat-color.css">
然后再需要使用的地方直接使用对应的CSS类名即可:
<div class="mbc-primary">Man Bat Primary Color</div>
<div class="mbc-secondary">Man Bat Secondary Color</div>
<div class="mbc-background">Man Bat Background Color</div>
import { ManBatColor } from 'man-bat-color';
function MyComponent() {
return (
<div>
<div style={{ backgroundColor: ManBatColor.primary }}>Man Bat Primary Color</div>
<div style={{ backgroundColor: ManBatColor.secondary }}>Man Bat Secondary Color</div>
<div style={{ backgroundColor: ManBatColor.background }}>Man Bat Background Color</div>
</div>
);
}
import ManBatColor
let primaryColor = ManBatColor.primary
let secondaryColor = ManBatColor.secondary
let backgroundColor = ManBatColor.background
import com.manbat.color.ManBatColor
val primaryColor = ManBatColor.primary
val secondaryColor = ManBatColor.secondary
val backgroundColor = ManBatColor.background
如果您发现了任何bug或者有任何建议,请在Github上提出issue或者pull request。
如果您觉得Man Bat Color对您有帮助,欢迎请我喝杯咖啡:
Man Bat Color基于MIT协议发布,允许商业使用、修改和再发布。请在您的项目中保留MIT协议。