wangbd-myui
Version:
MY前端基础框架核心组件库
60 lines (55 loc) • 916 B
JavaScript
// 深蓝
export const deepBlue = {
brightness: 0.89,
contrast: 0.93,
grayscale: 0.07,
'hue-rotate': 360,
opacity: 1,
saturate: 2,
sepia: 0.41,
invert: 1
}
// 科技蓝
export const techBlue = {
brightness: 0.95,
contrast: 0.93,
grayscale: 0.34,
'hue-rotate': 360,
opacity: 1,
saturate: 2,
sepia: 0,
invert: 1
}
// 极黑
export const black = {
brightness: 0.89,
contrast: 1.21,
grayscale: 0.06,
'hue-rotate': 19,
opacity: 1,
saturate: 2,
sepia: 0.08,
invert: 1
}
// 橙色
export const orange = {
brightness: 0.94,
contrast: 1.26,
grayscale: 0.1,
'hue-rotate': 176,
opacity: 1,
saturate: 1.35,
sepia: 0,
invert: 1
}
// 单色蓝
export const blue = {
brightness: 0.88,
contrast: 1.22,
grayscale: 0,
'hue-rotate': 360,
opacity: 1,
saturate: 1.1,
sepia: 0.54,
invert: 0.9
}