2018-09-26 14:19:35 +03:00
|
|
|
import * as tinycolor from 'tinycolor2';
|
|
|
|
|
2018-09-26 12:59:37 +03:00
|
|
|
export default function(theme: { [key: string]: string }) {
|
|
|
|
const props = compile(theme);
|
|
|
|
|
|
|
|
Object.entries(props).forEach(([k, v]) => {
|
|
|
|
if (k == 'meta') return;
|
|
|
|
document.documentElement.style.setProperty(`--${k}`, v.toString());
|
|
|
|
});
|
2018-09-26 13:14:11 +03:00
|
|
|
|
|
|
|
localStorage.setItem('theme', JSON.stringify(props));
|
2018-09-26 12:59:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function compile(theme: { [key: string]: string }): { [key: string]: string } {
|
2018-09-26 14:19:35 +03:00
|
|
|
function getColor(code: string): tinycolor.Instance {
|
2018-09-26 12:59:37 +03:00
|
|
|
// ref
|
|
|
|
if (code[0] == '@') {
|
2018-09-26 14:19:35 +03:00
|
|
|
return getColor(theme[code.substr(1)]);
|
2018-09-26 12:59:37 +03:00
|
|
|
}
|
|
|
|
|
2018-09-26 14:19:35 +03:00
|
|
|
return tinycolor(code);
|
2018-09-26 12:59:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const props = {};
|
|
|
|
|
|
|
|
Object.entries(theme).forEach(([k, v]) => {
|
|
|
|
if (k == 'meta') return;
|
2018-09-26 14:19:35 +03:00
|
|
|
const c = getColor(v);
|
|
|
|
props[k] = genValue(c);
|
|
|
|
props[`${k}-r`] = c.toRgb().r;
|
|
|
|
props[`${k}-g`] = c.toRgb().g;
|
|
|
|
props[`${k}-b`] = c.toRgb().b;
|
|
|
|
props[`${k}-a`] = c.toRgb().a;
|
2018-09-26 12:59:37 +03:00
|
|
|
});
|
|
|
|
|
2018-09-26 14:19:35 +03:00
|
|
|
const primary = getColor(props['primary']);
|
|
|
|
|
|
|
|
for (let i = 1; i < 10; i++) {
|
|
|
|
const color = primary.clone().setAlpha(i / 10);
|
|
|
|
props['primaryAlpha0' + i] = genValue(color);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 1; i < 100; i++) {
|
|
|
|
const color = primary.clone().lighten(i);
|
|
|
|
props['primaryLighten' + i] = genValue(color);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 1; i < 100; i++) {
|
|
|
|
const color = primary.clone().darken(i);
|
|
|
|
props['primaryDarken' + i] = genValue(color);
|
|
|
|
}
|
|
|
|
|
2018-09-26 12:59:37 +03:00
|
|
|
return props;
|
|
|
|
}
|
|
|
|
|
2018-09-26 14:19:35 +03:00
|
|
|
function genValue(c: tinycolor.Instance): string {
|
|
|
|
return c.toRgbString();
|
2018-09-26 12:59:37 +03:00
|
|
|
}
|