With tabularray, I'm trying to reach the following result:

However, when doing it with tabularray:
\documentclass[8pt]{report}
\usepackage[utf8]{inputenc} %Accept different input encodings
\usepackage[T1]{fontenc} %Standard package for selecting font encodings.
\usepackage[UKenglish]{babel}
\usepackage{xcolor, colortbl} %Driver-independent color extensions.
\usepackage{tabularray} %Typeset Tabulars and Arrays with LATEX3
\usepackage{booktabs} % Required for nicer horizontal rules in tables
% Solid colors used by custom
\definecolor{customPink}{RGB}{255,000,255}
\definecolor{customLightBlue}{RGB}{034,181,255}
\definecolor{customYellow}{RGB}{255,194,000}
\definecolor{customDarkBlue}{RGB}{000,113,188}
\definecolor{customShadePink1}{RGB}{233,099,253}
\definecolor{customShadePurple1}{RGB}{155,086,244}
\definecolor{customShadeBlue1}{RGB}{087,129,242}
\definecolor{customGrey}{RGB}{128,128,128}
\definecolor{customGreyLight}{RGB}{243,243,234}
\definecolor{customGreyHeaderTable}{RGB}{230,230,230}
\definecolor{customGreyRowTable}{RGB}{250,250,250}
\begin{document}
\begin{tblr}{
hline{1,Z} = {1pt,solid},
hline{2} = {1pt,solid,customGrey},
hline{3,Y} = {customGreyLight},
vline{1,Z} = {1pt,solid},
vline{2-Y} = {customGreyLight},
columns = {l},
row{1} = {bg=customGreyHeaderTable, fg=customShadePink1},
row{2-Z}= {bg=customGreyRowTable, fg=customGrey}
}
\textbf{Version} & \textbf{Date} & \textbf{Comment} & \textbf{Author} & \textbf{Reviewer} \
0.1 & 16-04-2023 & Creation of the document & ... & ... \
& & & & \
& & & & \
\end{tblr}
\end{document}
The horizontal lines are going over the first and last vertical lines and I would like the opposite to highlight the outside borders.
Within the table, It can remain like it is i.e. I want the hline color to have priority over the inside vline colors.
Thanks in advance.






customGreyLight, and I couldn't find it inxcolor. Start with\documentclassand and ends with\end[document}– pascal974 Dec 02 '23 at 12:298ptis a valid option to thereportclass. See: https://tex.stackexchange.com/q/473838/47927 – Jasper Habicht Dec 02 '23 at 17:06