iceshrimp-legacy/src/client/app/theme.ts

105 lines
2.5 KiB
TypeScript
Raw Normal View History

2018-09-26 13:19:35 +02:00
import * as tinycolor from 'tinycolor2';
2018-09-26 18:32:04 +02:00
2018-10-02 09:04:31 +02:00
export type Theme = {
id: string;
name: string;
author: string;
desc?: string;
base?: 'dark' | 'light';
vars: { [key: string]: string };
props: { [key: string]: string };
2018-09-26 18:32:04 +02:00
};
2018-10-02 09:04:31 +02:00
export const lightTheme: Theme = require('../theme/light.json5');
export const darkTheme: Theme = require('../theme/dark.json5');
export const pinkTheme: Theme = require('../theme/pink.json5');
2018-10-08 08:23:20 +02:00
export const blackTheme: Theme = require('../theme/black.json5');
2018-10-02 09:04:31 +02:00
export const halloweenTheme: Theme = require('../theme/halloween.json5');
export const builtinThemes = [
lightTheme,
darkTheme,
pinkTheme,
2018-10-08 08:23:20 +02:00
blackTheme,
2018-10-02 09:04:31 +02:00
halloweenTheme
];
2018-09-28 17:01:11 +02:00
export function applyTheme(theme: Theme, persisted = true) {
2018-10-02 09:04:31 +02:00
// Deep copy
const _theme = JSON.parse(JSON.stringify(theme));
if (_theme.base) {
const base = [lightTheme, darkTheme].find(x => x.id == _theme.base);
_theme.vars = Object.assign({}, base.vars, _theme.vars);
_theme.props = Object.assign({}, base.props, _theme.props);
2018-09-26 18:32:04 +02:00
}
2018-09-26 13:19:35 +02:00
2018-10-02 09:04:31 +02:00
const props = compile(_theme);
2018-09-26 11:59:37 +02:00
Object.entries(props).forEach(([k, v]) => {
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-10-02 09:04:31 +02:00
return getColor(theme.props[code.substr(1)]);
2018-09-26 11:59:37 +02:00
}
2018-09-27 12:14:35 +02:00
if (code[0] == '$') {
2018-10-02 09:04:31 +02:00
return getColor(theme.vars[code.substr(1)]);
2018-09-27 12:14:35 +02:00
}
// 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 = {};
2018-10-02 09:04:31 +02:00
Object.entries(theme.props).forEach(([k, v]) => {
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
}