* Stop mutating resources param in ComponentResources emitter * Add done rebuilding log for fast rebuilds * Move google font loading to Head component * Simplify code and fix comment
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export interface ColorScheme {
 | 
						|
  light: string
 | 
						|
  lightgray: string
 | 
						|
  gray: string
 | 
						|
  darkgray: string
 | 
						|
  dark: string
 | 
						|
  secondary: string
 | 
						|
  tertiary: string
 | 
						|
  highlight: string
 | 
						|
}
 | 
						|
 | 
						|
interface Colors {
 | 
						|
  lightMode: ColorScheme
 | 
						|
  darkMode: ColorScheme
 | 
						|
}
 | 
						|
 | 
						|
export interface Theme {
 | 
						|
  typography: {
 | 
						|
    header: string
 | 
						|
    body: string
 | 
						|
    code: string
 | 
						|
  }
 | 
						|
  cdnCaching: boolean
 | 
						|
  colors: Colors
 | 
						|
  fontOrigin: "googleFonts" | "local"
 | 
						|
}
 | 
						|
 | 
						|
export type ThemeKey = keyof Colors
 | 
						|
 | 
						|
const DEFAULT_SANS_SERIF =
 | 
						|
  '-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif'
 | 
						|
const DEFAULT_MONO = "ui-monospace, SFMono-Regular, SF Mono, Menlo, monospace"
 | 
						|
 | 
						|
export function googleFontHref(theme: Theme) {
 | 
						|
  const { code, header, body } = theme.typography
 | 
						|
  return `https://fonts.googleapis.com/css2?family=${code}&family=${header}:wght@400;700&family=${body}:ital,wght@0,400;0,600;1,400;1,600&display=swap`
 | 
						|
}
 | 
						|
 | 
						|
export function joinStyles(theme: Theme, ...stylesheet: string[]) {
 | 
						|
  return `
 | 
						|
${stylesheet.join("\n\n")}
 | 
						|
 | 
						|
:root {
 | 
						|
  --light: ${theme.colors.lightMode.light};
 | 
						|
  --lightgray: ${theme.colors.lightMode.lightgray};
 | 
						|
  --gray: ${theme.colors.lightMode.gray};
 | 
						|
  --darkgray: ${theme.colors.lightMode.darkgray};
 | 
						|
  --dark: ${theme.colors.lightMode.dark};
 | 
						|
  --secondary: ${theme.colors.lightMode.secondary};
 | 
						|
  --tertiary: ${theme.colors.lightMode.tertiary};
 | 
						|
  --highlight: ${theme.colors.lightMode.highlight};
 | 
						|
 | 
						|
  --headerFont: "${theme.typography.header}", ${DEFAULT_SANS_SERIF};
 | 
						|
  --bodyFont: "${theme.typography.body}", ${DEFAULT_SANS_SERIF};
 | 
						|
  --codeFont: "${theme.typography.code}", ${DEFAULT_MONO};
 | 
						|
}
 | 
						|
 | 
						|
:root[saved-theme="dark"] {
 | 
						|
  --light: ${theme.colors.darkMode.light};
 | 
						|
  --lightgray: ${theme.colors.darkMode.lightgray};
 | 
						|
  --gray: ${theme.colors.darkMode.gray};
 | 
						|
  --darkgray: ${theme.colors.darkMode.darkgray};
 | 
						|
  --dark: ${theme.colors.darkMode.dark};
 | 
						|
  --secondary: ${theme.colors.darkMode.secondary};
 | 
						|
  --tertiary: ${theme.colors.darkMode.tertiary};
 | 
						|
  --highlight: ${theme.colors.darkMode.highlight};
 | 
						|
}
 | 
						|
`
 | 
						|
}
 |