Skip to content

Instantly share code, notes, and snippets.

@blackspike
Created April 25, 2023 09:04
Show Gist options
  • Save blackspike/e14df82c99c94f7a16906f45e6e19ff6 to your computer and use it in GitHub Desktop.
Save blackspike/e14df82c99c94f7a16906f45e6e19ff6 to your computer and use it in GitHub Desktop.
<script>
// lol
console.groupCollapsed("%cGreetings, fellow nerds!", "color: orangered")
console.group("%cDesign", "color: orange")
console.log(
"%cFonts %cInter, Satoshi",
"font-weight: 700",
"font-weight: 400"
)
console.log(
"%cTokens %cOpen Props",
"font-weight: 700",
"font-weight: 400"
)
console.groupEnd()
console.group("%cTech", "color: orange")
console.log(
"%cFrontend %cAstro.js & Vue.js, MDX",
"font-weight: 700",
"font-weight: 400"
)
console.log(
"%cHosting %cNetlify",
"font-weight: 700",
"font-weight: 400"
)
console.groupEnd()
console.group("%cDependencies", "color: orange")
console.log("animejs")
console.log("open-props")
console.log("three.js")
console.log("pug")
console.log("sass")
console.groupEnd()
console.groupEnd()
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment