13 lines
440 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import { commonDark } from "../../_styles/common/index.mjs";
import { self } from "./light.mjs";
const progressDark = {
name: 'Progress',
common: commonDark,
self(vars) {
const commonSelf = self(vars);
commonSelf.textColorLineInner = 'rgb(0, 0, 0)';
commonSelf.lineBgProcessing = 'linear-gradient(90deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .5) 100%)';
return commonSelf;
}
};
export default progressDark;