Showing 1 – 1 of 1 replies
leomoyses

How do I change gradient colors? […]

leomoyses PURCHASED
9 years ago
How do I change gradient colors?
tomaj
tomaj SELLER
9 years ago
Hi

You can change colours in source less file (_app.less) - lines about 250 - 253:

```
#header {
...
background: -webkit-linear-gradient(#7532c7, #32c7c2);
background: -o-linear-gradient(#7532c7, #32c7c2);
background: -moz-linear-gradient(#7532c7, #32c7c2);
background: linear-gradient(#7532c7, #32c7c2);
}
```

You just need to change colours #7532c7 and #32c7c2.
Than you will need to compile less file to output css file.