2018-09-26 13:19:35 +02:00
|
|
|
import * as tinycolor from 'tinycolor2';
|
2018-09-26 18:32:04 +02:00
|
|
|
|
|
|
|
type Theme = {
|
|
|
|
meta: {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
2018-09-28 17:01:11 +02:00
|
|
|
author: string;
|
|
|
|
base?: string;
|
2018-09-27 12:14:35 +02:00
|
|
|
vars: any;
|
2018-09-26 18:32:04 +02:00
|
|
|
};
|
|
|
|
} & {
|
|
|
|
[key: string]: string;
|
|
|
|
};
|
|
|
|
|
2018-09-28 17:01:11 +02:00
|
|
|
export function applyTheme(theme: Theme, persisted = true) {
|
|
|
|
if (theme.meta.base) {
|
|
|
|
const base = [lightTheme, darkTheme].find(x => x.meta.id == theme.meta.base);
|
|
|
|
theme = Object.assign({}, base, theme);
|
2018-09-26 18:32:04 +02:00
|
|
|
}
|
2018-09-26 13:19:35 +02:00
|
|
|
|
2018-09-26 11:59:37 +02:00
|
|
|
const props = compile(theme);
|
|
|
|
|
|
|
|
Object.entries(props).forEach(([k, v]) => {
|
|
|
|
if (k == 'meta') return;
|
|
|
|
document.documentElement.style.setProperty(`--${k}`, v.toString());
|
|
|
|
});
|
2018-09-26 12:14:11 +02:00
|
|
|
|
2018-09-28 17:01:11 +02:00
|
|
|
if (persisted) {
|
|
|
|
localStorage.setItem('theme', JSON.stringify(props));
|
|
|
|
}
|
2018-09-26 11:59:37 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 18:32:04 +02:00
|
|
|
function compile(theme: Theme): { [key: string]: string } {
|
2018-09-26 13:19:35 +02:00
|
|
|
function getColor(code: string): tinycolor.Instance {
|
2018-09-26 11:59:37 +02:00
|
|
|
// ref
|
|
|
|
if (code[0] == '@') {
|
2018-09-26 13:19:35 +02:00
|
|
|
return getColor(theme[code.substr(1)]);
|
2018-09-26 11:59:37 +02:00
|
|
|
}
|
2018-09-27 12:14:35 +02:00
|
|
|
if (code[0] == '$') {
|
|
|
|
return getColor(theme.meta.vars[code.substr(1)]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// func
|
|
|
|
if (code[0] == ':') {
|
|
|
|
const parts = code.split('<');
|
|
|
|
const func = parts.shift().substr(1);
|
2018-09-27 15:25:10 +02:00
|
|
|
const arg = parseFloat(parts.shift());
|
2018-09-27 12:14:35 +02:00
|
|
|
const color = getColor(parts.join('<'));
|
|
|
|
|
|
|
|
switch (func) {
|
|
|
|
case 'darken': return color.darken(arg);
|
|
|
|
case 'lighten': return color.lighten(arg);
|
2018-09-27 15:25:10 +02:00
|
|
|
case 'alpha': return color.setAlpha(arg);
|
2018-09-27 12:14:35 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-26 11:59:37 +02:00
|
|
|
|
2018-09-26 13:19:35 +02:00
|
|
|
return tinycolor(code);
|
2018-09-26 11:59:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const props = {};
|
|
|
|
|
|
|
|
Object.entries(theme).forEach(([k, v]) => {
|
|
|
|
if (k == 'meta') return;
|
2018-09-26 13:19:35 +02:00
|
|
|
const c = getColor(v);
|
|
|
|
props[k] = genValue(c);
|
2018-09-26 11:59:37 +02:00
|
|
|
});
|
|
|
|
|
2018-09-26 13:19:35 +02: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 11:59:37 +02:00
|
|
|
return props;
|
|
|
|
}
|
|
|
|
|
2018-09-26 13:19:35 +02:00
|
|
|
function genValue(c: tinycolor.Instance): string {
|
|
|
|
return c.toRgbString();
|
2018-09-26 11:59:37 +02:00
|
|
|
}
|
2018-09-28 17:01:11 +02:00
|
|
|
|
|
|
|
export const lightTheme = require('../theme/light.json');
|
|
|
|
export const darkTheme = require('../theme/dark.json');
|
|
|
|
export const halloweenTheme = require('../theme/halloween.json');
|
|
|
|
|
|
|
|
export const builtinThemes = [
|
|
|
|
lightTheme,
|
|
|
|
darkTheme,
|
|
|
|
halloweenTheme
|
|
|
|
];
|