The emotion css-mode test is not actually using emotion for colouring of the cells, which is the heaviest part. It just uses inline styles:
style={{ background: `rgba(74, 174, 53, ${x})` }}
which has to be super quick.
Instead, it should be using class generation like the glamorous/glamor-css test does.
I can submit a PR to fix this. It considerably changes the results table.
The emotion css-mode test is not actually using emotion for colouring of the cells, which is the heaviest part. It just uses inline styles:
style={{ background: `rgba(74, 174, 53, ${x})` }}which has to be super quick.
Instead, it should be using class generation like the glamorous/glamor-css test does.
I can submit a PR to fix this. It considerably changes the results table.