Recipes

Recipes

Callouts and buttons

⚠️
Lorem ipsum dolor sit amet. Check the details before copying this recipe into a production project.
🚫
This is an intentionally visible error callout for visual testing.
Primary action

Code

package main

import "fmt"

func main() {
	message := "lorem ipsum"
	fmt.Println(message)
}
1
2
const theme = window.matchMedia('(prefers-color-scheme: dark)')
console.log(`Current preference: ${theme.matches ? 'dark' : 'light'}`)