import { darken, desaturate, lighten, readableColor, transparentize } from 'polished'; const defaultTheme: ThemeInterface = { spacing: { unit: 5, sectionHorizontal: ({ spacing }) => spacing.unit * 8, sectionVertical: ({ spacing }) => spacing.unit * 8, }, breakpoints: { small: '50rem', medium: '85rem', large: '105rem', }, colors: { tonalOffset: 0.3, primary: { main: '#32329f', light: ({ colors }) => lighten(colors.tonalOffset, colors.primary.main), dark: ({ colors }) => darken(colors.tonalOffset, colors.primary.main), contrastText: ({ colors }) => readableColor(colors.primary.main), }, success: { main: '#00aa13', light: ({ colors }) => lighten(colors.tonalOffset, colors.success.main), dark: ({ colors }) => darken(colors.tonalOffset, colors.success.main), contrastText: ({ colors }) => readableColor(colors.success.main), }, warning: { main: '#d4ad03', light: ({ colors }) => lighten(colors.tonalOffset, colors.warning.main), dark: ({ colors }) => darken(colors.tonalOffset, colors.warning.main), contrastText: '#ffffff', }, error: { main: '#e53935', light: ({ colors }) => lighten(colors.tonalOffset, colors.error.main), dark: ({ colors }) => darken(colors.tonalOffset, colors.error.main), contrastText: ({ colors }) => readableColor(colors.error.main), }, text: { primary: '#333333', secondary: ({ colors }) => lighten(colors.tonalOffset, colors.text.primary), }, border: { dark: 'rgba(0,0,0, 0.1)', light: '#ffffff', }, responses: { success: { color: ({ colors }) => colors.success.main, backgroundColor: ({ colors }) => transparentize(0.9, colors.success.main), }, error: { color: ({ colors }) => colors.error.main, backgroundColor: ({ colors }) => transparentize(0.9, colors.error.main), }, redirect: { color: '#ffa500', backgroundColor: ({ colors }) => transparentize(0.9, colors.responses.redirect.color), }, info: { color: '#87ceeb', backgroundColor: ({ colors }) => transparentize(0.9, colors.responses.info.color), }, }, http: { get: '#6bbd5b', post: '#248fb2', put: '#9b708b', options: '#d3ca12', patch: '#e09d43', delete: '#e27a7a', basic: '#999', link: '#31bbb6', head: '#c167e4', }, }, schema: { linesColor: theme => lighten( theme.colors.tonalOffset, desaturate(theme.colors.tonalOffset, theme.colors.primary.main), ), defaultDetailsWidth: '75%', typeNameColor: theme => theme.colors.text.secondary, typeTitleColor: theme => theme.schema.typeNameColor, requireLabelColor: theme => theme.colors.error.main, labelsTextSize: '0.9em', nestingSpacing: '1em', nestedBackground: '#fafafa', arrow: { size: '1.1em', color: theme => theme.colors.text.secondary, }, }, typography: { fontSize: '14px', lineHeight: '1.5', fontWeightRegular: '400', fontWeightBold: '600', fontWeightLight: '300', fontFamily: 'Roboto, sans-serif', smoothing: 'antialiased', optimizeSpeed: true, headings: { fontFamily: 'Montserrat, sans-serif', }, code: { fontSize: '13px', fontFamily: 'Courier, monospace', lineHeight: ({ typography }) => typography.lineHeight, fontWeight: ({ typography }) => typography.fontWeightRegular, color: '#e53935', backgroundColor: 'rgba(38, 50, 56, 0.04)', }, links: { color: ({ colors }) => colors.primary.main, visited: ({ colors }) => colors.primary.main, hover: ({ colors }) => lighten(0.2, colors.primary.main), }, }, menu: { width: '260px', backgroundColor: '#fafafa', groupItems: { textTransform: 'uppercase', }, level1Items: { textTransform: 'none', }, arrow: { size: '1.5em', color: theme => theme.colors.text.primary, }, }, logo: { maxHeight: ({ menu }) => menu.width, maxWidth: ({ menu }) => menu.width, }, rightPanel: { backgroundColor: '#263238', width: '40%', textColor: '#ffffff', }, }; export default defaultTheme; export function resolveTheme(theme: ThemeInterface): ResolvedThemeInterface { const resolvedValues = {}; let counter = 0; const setProxy = (obj, path: string) => { Object.keys(obj).forEach(k => { const currentPath = (path ? path + '.' : '') + k; const val = obj[k]; if (typeof val === 'function') { Object.defineProperty(obj, k, { get() { if (!resolvedValues[currentPath]) { counter++; if (counter > 1000) { throw new Error( `Theme probably contains cirucal dependency at ${currentPath}: ${val.toString()}`, ); } resolvedValues[currentPath] = val(theme); } return resolvedValues[currentPath]; }, enumerable: true, }); } else if (typeof val === 'object') { setProxy(val, currentPath); } }); }; setProxy(theme, ''); return JSON.parse(JSON.stringify(theme)); } export interface ColorSetting { main: string; light: string; dark: string; contrastText: string; } export interface HTTPResponseColos { color: string; backgroundColor: string; } export interface FontSettings { fontSize: string; fontWeight: string; fontFamily: string; lineHeight: string; color: string; } export interface ResolvedThemeInterface { spacing: { unit: number; sectionHorizontal: number; sectionVertical: number; }; breakpoints: { small: string; medium: string; large: string; }; colors: { tonalOffset: number; primary: ColorSetting; success: ColorSetting; warning: ColorSetting; error: ColorSetting; border: { light: string; dark: string; }; text: { primary: string; secondary: string; }; responses: { success: HTTPResponseColos; error: HTTPResponseColos; redirect: HTTPResponseColos; info: HTTPResponseColos; }; http: { get: string; post: string; put: string; options: string; patch: string; delete: string; basic: string; link: string; head: string; }; }; schema: { linesColor: string; defaultDetailsWidth: string; typeNameColor: string; typeTitleColor: string; requireLabelColor: string; labelsTextSize: string; nestingSpacing: string; nestedBackground: string; arrow: { size: string; color: string; }; }; typography: { fontSize: string; lineHeight: string; fontWeightLight: string; fontWeightRegular: string; fontWeightBold: string; fontFamily: string; smoothing: string; optimizeSpeed: boolean; code: FontSettings & { backgroundColor: string; }; headings: { fontFamily: string; }; links: { color: string; visited: string; hover: string; }; }; menu: { width: string; backgroundColor: string; groupItems: { textTransform: string; }; level1Items: { textTransform: string; }; arrow: { size: string; color: string; }; }; logo: { maxHeight: string; maxWidth: string; }; rightPanel: { backgroundColor: string; textColor: string; width: string; }; extensionsHook?: (name: string, props: any) => string; } export type primitive = string | number | boolean | undefined | null; export type AdvancedThemeDeep = T extends primitive ? T | ((theme: ResolvedThemeInterface) => T) : AdvancedThemeObject; export type AdvancedThemeObject = { [P in keyof T]?: AdvancedThemeDeep }; export type ThemeInterface = AdvancedThemeObject;