aurora.ts
tokens.css
README.md
1
2
3
4
5
6
7
// Render the southern sky
import { paint } from './aurora';
export const LATITUDE = -77.85;
export function render(name: string) {
  return paint(name, LATITUDE);
}