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
| const API_URL = "https://api.tfl.gov.uk/line/mode/tube/status"; | |
| // Define official TfL colors | |
| const LINE_COLORS = { | |
| "Bakerloo": "#B36305", | |
| "Central": "#E32017", | |
| "Circle": "#FFD300", | |
| "District": "#00782A", | |
| "Hammersmith & City": "#F3A9BB", | |
| "Jubilee": "#A0A5A9", |
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
| let widget = new ListWidget(); | |
| widget.backgroundColor = new Color("#180048"); | |
| const header = widget.addText("Octopus Energy"); | |
| header.font = Font.boldSystemFont(12); | |
| header.textColor = Color.white(); | |
| widget.addSpacer(); | |
| function getFormattedDate(date) { | |
| return date.toISOString().split(".")[0] + "Z"; |