* This method is used to set a darkened primary color.
()
| 288 | * This method is used to set a darkened primary color. |
| 289 | */ |
| 290 | darkenPrimaryColor() { |
| 291 | this.darkenedPrimaryColor = Color(this.primaryColor) |
| 292 | .darken(0.4) |
| 293 | .hex.toString(); |
| 294 | } |
| 295 | |
| 296 | matches(id) { |
| 297 | return this.id.toLowerCase() === id.toLowerCase(); |
no test coverage detected