Skip to content

Instantly share code, notes, and snippets.

@sirdarthvader
Created April 1, 2018 22:07
Show Gist options
  • Save sirdarthvader/2c89c83ba40b1c26294c452d329b82dd to your computer and use it in GitHub Desktop.
Save sirdarthvader/2c89c83ba40b1c26294c452d329b82dd to your computer and use it in GitHub Desktop.
const canvas = document.querySelector('#canvas');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
ctx.strokeStyle = '#BADA55';
ctx.lineWidth = 1;
ctx.lineJoin = 'round';
ctx.lineCap = 'round';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment