how to override few styles in Valo

Hi,

I’m working on new grid using valo theme, now i wanted a particular style in valo to be overridden by my style, can i do that , if yes how?

In the following style i want to change the value of attibute
color
to #000000

.grid .v-grid-row-selected > .v-grid-cell {
background-color: #197de1;
background-image: -webkit-linear-gradient(top, #1b87e3 2%, #166ed598%);
background-image: linear-gradient(to bottom,#1b87e3 2%, #166ed5 98%);
[color=#FF0000]
color: #c8dbed;
[/color]
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
border-color: #1d69b4;
}

I tried to give the style in my styles.scss file but it didnt work. Please help

Hello,

You can try this for example:
color: #c8dbed !important;

Hi,

I tried your example, and it helped me, thanks a lot.