This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Todo list app</title> | |
| </head> | |
| <body> | |
| <div id="app"> | |
| <input type="text" id="project-name" placeholder="New Project Name"> | |
| <button onclick="newProject(document.getElementById('project-name').value)">Add</button> | |
| <div id="projects-and-tasks"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dark: | |
| # Background image | |
| lovelace-background: 'center / cover no-repeat url("/local/night.jpg") fixed' | |
| # Colors | |
| text-color: '#DADADB' # Grey text | |
| text-medium-light-color: '#A0A2A8' # Medium-light grey text | |
| text-medium-color: '#80828A' # Medium grey text | |
| text-dark-color: '#6A6B74' # Dark grey text | |
| accent-color: '#008bef' # Blue |