I am currently trying to determine if the color of a specific page changes immediately after clicking on a button designed to alter the color of an element within that page. My goal is to extract the RGB value stated as rgb(183,168,168); in this particular case. How can I accurately retrieve this value?
`.matrix-var1 .dmNav li a {
box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5) inset, 2px 2px 2px rgba(0, 0, 0, 0.4);
border-radius: 5px 5px 5px 5px;
padding: 5px 0px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.1)
100%) repeat scroll 0% 0% rgb(183, 168, 168);`