:root {
    --green: #00FF00;
    --white: #FFFFFF;
    --black: #000000;
    --blue: #0000ff;
}
body {
    background: var(--bg);
    color: var(--fontColor);
    font-family: helvetica;
}

li {
    list-style: circle;
}
  
.list {
    list-style: square;
}


.light-theme {
    --bg: var(--green);
    --fontColor: var(--black);
    --btnBg: var(--black);
    --btnFontColor: var(--green);
}
.dark-theme {
    --bg: var(--black);
    --fontColor: var(--green);
    --btnBg: var(--blue);
    --btnFontColor: var(--white);
}
.blue-theme {
    --bg: var(--blue);
    --fontColor: var(--white);
    --btnBg: var(--green);
    --btnFontColor: var(--black);
}
.btn {
    position: absolute;
    top: 20px;
    left: 250px;
    height: 50px;
    width: 50px;
    border-radius: 74%;
    border: none;
    color: var(--btnFontColor);
    background-color: var(--btnBg);
  }