Skip to main content
Topic: change color of board icons (Read 1380 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

change color of board icons

I want to change the color of the green-ish board icons to a blue. But how? The color code in the css file is much different then the codes I know from other css files.

Code: [Select]
.i-board-new::before {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3ClinearGradient id='brdGrd' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%235FA77B'/%3E%3Cstop offset='20%25' stop-color='%23539442'/%3E%3Cstop offset='80%25' stop-color='%23539442'/%3E%3Cstop offset='100%25' stop-color='%235FA77B'/%3E%3C/linearGradient%3E%3Cpath fill='url(%23brdGrd)' d='M26 30l6-16H6L0 30zM4 12L0 30V4h9l4 4h13v4z'/%3E%3C/svg%3E");
}

Re: change color of board icons

Reply #1

Its those sections that look like %23539442 ... the %23 is a # so that translates to #539442 the standard greenish color.

So look for those stop-color='%23XXXXXX' and change the XXXXXX to the hex code you want..

Re: change color of board icons

Reply #2

Ah, thanks!