Files
NativeScript/packages/core
Nathan Walker aaeab990c8 fix(color): support web standard #rrggbbaa format
original pr credit to @farfromrefug
https://github.com/NativeScript/NativeScript/pull/8519

BREAKING CHANGE

Long standing inconsistency with color handling here.

BEFORE:

```
// #aarrggbb

const color = new Color('#ff00ff00');

Label {
    background-color: #ff00ff00;
}
```

AFTER:

```
// #rrggbbaa

const color = new Color('#00ff00ff');

Label {
    background-color: #00ff00ff;
}
```
2021-04-06 11:18:36 -07:00
..
2021-04-06 11:18:36 -07:00
2020-09-25 15:58:39 -07:00
2020-11-11 08:46:36 -08:00
2020-11-11 08:46:36 -08:00
2020-11-11 08:46:36 -08:00
2020-11-11 08:46:36 -08:00
2020-11-11 08:46:36 -08:00
2021-04-06 11:18:36 -07:00
2020-11-11 08:46:36 -08:00
2021-03-02 20:21:33 -08:00
2021-01-13 16:06:51 -08:00
2021-01-13 16:06:51 -08:00
2021-04-06 11:18:36 -07:00