I've been trying to follow the other SO questions here and here but nothing works for some reason. I'm new to LaTex and trying to change the color of the citations from black to blue.
Currently each citation is a number: [1] with a hyperref, so when I click on it it moves me to the last page.
I'm currently using the following packages for citations:
\usepackage {hyperref}
\usepackage[backend=biber,style=numeric,sorting=none]{biblatex}
\addbibresource{mybib.bib}
And writing each citation as \cite{*}
I tried using this package \usepackage[hidelinks,colorlinks=true,linkcolor=blue,citecolor=blue]{hyperref} but it doesn't seem to do anything
I'm not sure what other code to add here as I'm new in this community, but let me know if there's anything else I should add.

hyperrefshould generally be the last package you load in the preamble. – moewe Aug 05 '21 at 18:44hyperrefto be the last package as you said and everything works! Thanks a lot – Penguin Aug 05 '21 at 18:49