Added dark mode color pallete

This commit is contained in:
2021-09-25 22:49:57 -03:00
parent 63d8ddd567
commit a3b6e3b05c
3 changed files with 9 additions and 3 deletions

View File

@@ -3,7 +3,9 @@ import React from 'react'
const DarkMode = () => {
return (
<div className="dark-mode">
<input type="checkbox" id="dark-mode_toogle-switch"/>
<input type="checkbox" id="dark-mode_toogle-switch" onChange={() => {
}}/>
<label for="dark-mode_toogle-switch"></label>
</div>
)