document.addEventListener("DOMContentLoaded", function() {
const cartRowTitle = document.querySelectorAll('.cart-row-title');
cartRowTitle.forEach(function(element) {
element.style.color = "hsl(210, 2%, 43%)"; // Example of applying the color programmatically
});
const cartRowItems = document.querySelectorAll('.cart-row-qty-input, .cart-row-qty-alert, .cart-row-qty-inc, .cart-row-price, .cart-subtotal-label, .cart-subtotal-price, .cart-row-remove');
cartRowItems.forEach(function(element) {
element.style.color = "hsl(210, 2%, 35%)"; // Example of applying color
});
});