Skip to content

Instantly share code, notes, and snippets.

@paleite
Created March 14, 2025 09:08
Show Gist options
  • Save paleite/52bb44c7e97539ffdfa1db8cf7bf9129 to your computer and use it in GitHub Desktop.
Save paleite/52bb44c7e97539ffdfa1db8cf7bf9129 to your computer and use it in GitHub Desktop.
CSS-styled output in the console
/** @type {{ event: string; [key: PropertyKey]: unknown; }} */
const exampleEvent = { event: "modules_rendered", spotlight_modules: [ "ToolbarPinning", "PerformanceInterventionUI", "MobilePasswords", "129-companypayreauth", ], explore_more_modules: [ "128-company-lens", "128-product-site-search-shortcut", "127-side-panel-pinning", "125-search-box-suggestions", "125-safety-check", "123-generative-theming", ], };
console.debug( `%c DataLayer %c ${exampleEvent.event} `, "background: blue; color: white;", "background: lightgrey; color: black;", exampleEvent );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment