egirlskey/src/client/app/theme.ts

103 lines
2.3 KiB
TypeScript
Raw Normal View History

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