<script>
import Roller from './Roller.svelte'
const getMonth = (date)=>{
const month = date.toString().split(" ")[1]
return month;
}
const months = Array(12).fill().map((v,i)=>getMonth(new Date((i+1)+"/1/2000")))
let month = months[4]
let day = 1;
let year = 1999;
const daysPerMonth = (m,y)=>{
if (["Jan","Mar","May","Jul","Aug","Oct","Dec"].includes(m)){
return 31;
}
if (m === "Feb"){
// take leap years into account
return (y % 4) === 0 ? 29 : 28;
}
return 30;
}
</script>
<style>
:global(*) {
box-sizing: border-box;
}
.background{
background:linear-gradient(250deg, rgb(50,50,255), rgb(150,150,250));;
display:flex;
flex-direction:column;
height:100%;
justify-content:center;
align-items:center; touch-action: none;
}