How to change link colors on my cart page?

Hi, looking for help changing the links (‘continue shopping’ and ‘remove’) on the cart page from this light green accent color to this blue #a4bed5.

https://shopcestmimi.com/cart

Hi @PamelaL17

Please add the following code at the end of your theme.css file:

a.text-link.text-link--accent {
    color: #a4bed5;
}

That will adjust both links. Should that help answer your query, we always appreciate a like & mark as answer to let the community find quality answers faster. Thanks!

@PamelaL17

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.cart__remove a { color: green !important;}

Thanks!