
so far i have only
https://tex.stackexchange.com/questions/648326/how-to-reproduce-this-image-in-latex/648336#648336
\documentclass{standalone} \usepackage{tikz} \tikzset{ mynode/.style args={#1/#2/#3/#4/#5}{ #1, fill=#2, rounded corners=#5, minimum height=#3, minimum width=#4, font=\sffamily\Large, }, } \begin{document} \begin{tikzpicture} \node (a) [mynode=/gray!15/3cm/18cm/10pt] {}; \node (b) [mynode={white,right=1cm}/blue/2cm/5.5cm/0pt] at (a.west) {Data File}; \coordinate (tmp) at (b.east); \foreach \word/\col in {Parameter\\file/green,Control\\ File/green!50!black,Password\\File/blue!30,Archive Log\\File/purple} \node (tmp) [mynode={white,anchor=west,right=3pt,align=center}/\col/2cm/2.5cm/0pt] at (tmp.east) {\word}; \end{tikzpicture} \end{document}