react-loader-spinner icon indicating copy to clipboard operation
react-loader-spinner copied to clipboard

DNA default colors

Open Signor1 opened this issue 2 years ago • 1 comments

How to change the two default colours of the DNA loader

Signor1 avatar Aug 14 '23 09:08 Signor1

The DNA loader is an svg element wrapping lots of circle paths. To change their default colours, we can use custom css styling. Example: svg.dna-wrapper circle:nth-child(odd) { fill: #3056D3 !important; } svg.dna-wrapper circle:nth-child(even) { fill: #E52727 !important; }

Signor1 avatar Aug 14 '23 09:08 Signor1