react-loader-spinner
react-loader-spinner copied to clipboard
DNA default colors
How to change the two default colours of the DNA loader
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; }