/** * Visual theme — grayscale. Tweak these to re-skin the whole portfolio. * `gradient` feeds for the hero wordmark. * Hierarchy is carried by brightness + bold (no hue): accent → text → accentAlt → muted. */ export const theme = { /** Grayscale gradient stops (bright → dim), left-to-right across the name. */ gradient: ['#FFFFFF', '#B5B5B5', '#707070'] as string[], /** Emphasis — names, role titles, selected menu item (pair with bold). */ accent: '#FFFFFF', /** Secondary — section headers, tagline, links. */ accentAlt: '#9A9A9A', /** De-emphasized — years, periods, unselected menu items. */ muted: '#6B6B6B', /** Body text. */ text: '#CFCFCF', }