1
2
3
4
5
6
7
8
| export function romColor() {
| let colors = ['#e7eccb','#54d6be','#57b6ae','#21565a','#37364a','#49566e','#3e839f','#2f8f6c','#f37b60','#f7f8ea','#74a995','#0d0944','#ee571e','#e7f3ff','#a4c0d8','#317460','#dbbd65','#20083a','#7e0d41','#ef3e50','#f2795e','#fcfee6','#f3db9f','#e49463','#4f7b88','#eeebdc','#eeebdc','#c7e4f2','#6098c9','#511112']
| return colors
| }
| export function screenAlarmColor() {
| let colors = ['#6cfeba','#fe7915','#c6f983','#ffe725','#fd6c96','#b5e8ff','#ffb5b6','#7be5ff','#ffdbf8','#ffb7ff','#c6ffc9','#a0ffa0','#ffe3ca','#fccc8a','#ffaa32','#b7ac92','#fbfe8a','#89e0d5','#55ffd5','#ff7927']
| return colors
| }
|
|