| 96 | } |
| 97 | |
| 98 | static get list() { |
| 99 | if (!this._colors) { |
| 100 | this._colors = [ |
| 101 | this.green, |
| 102 | this.violet, |
| 103 | this.orange, |
| 104 | this.yellow, |
| 105 | this.primaryColor, |
| 106 | this.red, |
| 107 | this.blue, |
| 108 | this.yellow, |
| 109 | this.secondaryColor, |
| 110 | this.darken(this.green), |
| 111 | this.darken(this.violet), |
| 112 | this.darken(this.orange), |
| 113 | this.darken(this.yellow), |
| 114 | this.darken(this.primaryColor), |
| 115 | this.darken(this.red), |
| 116 | this.darken(this.blue), |
| 117 | this.darken(this.yellow), |
| 118 | this.darken(this.secondaryColor), |
| 119 | ]; |
| 120 | } |
| 121 | return this._colors; |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | import {DOM} from '../../js/web-api-helper.mjs'; |