In a previous topic (Highlighting particular bibliography entries), the asker was looking for a way to color specific entries.
The solution provided allows for choosing arbitrary color for any desired bibliographic entry using \DeclareBibliographyCategory and \AtEveryBibitem. The entry that we want to be colored may explcictly be specified using \addtocategory The result is something as follows
I want to apply very similar thing except thing that I do not want to specify the color of a bibliographic entry. Instead, I want the entire entry to be highlighted with a specific color
\begin{filecontents*}{sample.bib}
@article{aldaoudeyeh2016,
title={{Photovoltaic-battery scheme to enhance PV array characteristics in partial shading conditions}},
author={Aldaoudeyeh, Al-Motasem},
journal={IET Renewable Power Generation},
volume={10},
number={1},
pages={108--115},
year={2016},
publisher={IET}
}
@ARTICLE{wu2017,
title={{Assessing Impact of Renewable Energy Integration on System Strength Using Site-Dependent Short Circuit Ratio}},
author={Wu, Di and Li, Gangan and Javadi, Milad and Malyscheff, Alexander M and Hong, Mingguo and Jiang, John Ning},
journal={IEEE Transactions on Sustainable Energy},
year={2017},
publisher={IEEE}
}
@article{wu2019method,
title={A method to identify weak points of interconnection of renewable energy resources},
author={Wu, Di and Aldaoudeyeh, Al~Motasem and Javadi, Milad and Ma, Feng and Tan, Jin and Jiang, John N and others},
journal={International Journal of Electrical Power \& Energy Systems},
volume={110},
pages={72--82},
year={2019},
publisher={Elsevier}
}
\end{filecontents*}
\documentclass{book}
\usepackage[x11names]{xcolor}
\usepackage{hyperref}
\hypersetup{citecolor=DodgerBlue3, citebordercolor=DodgerBlue3, colorlinks=true}
\usepackage[style=alphabetic]{biblatex}
\addbibresource{sample.bib}
\DeclareBibliographyCategory{highlight}
\AtEveryBibitem{%
\ifcategory{highlight}%
{\color{SlateBlue3}}%
{}%
}
\begin{document}
\addtocategory{highlight}{aldaoudeyeh2016}
\cite{aldaoudeyeh2016}
\nocite{*}
\printbibliography
\end{document}


[...]to be highlighted also? Specifying the colour is going to be necessary somehow, so I'm not sure what you mean by saying you don't want to specify the colour yet "highlight with a specific color". – Alan Munn Jun 01 '20 at 18:40\textcoloror\hlcommand fromsoulpackage. However, both commands require an argument – Al-Motasem Aldaoudeyeh Jun 01 '20 at 19:06soulcommands will not work, since they only allow a very restricted class of inputs. If you use LuaTeX you can try https://ctan.org/pkg/lua-ul – moewe Jun 02 '20 at 05:42