﻿/* custom-style.css */
.btn-primary {
    background-color: rgb(222 134 71) !important;
     /* İstediğiniz renk kodu */
    border-color: rgb(222 134 71) !important;
    
}

/* custom-style.css */
.text-primary {
    --bs-primary-rgb: 222, 134, 71; /* İstediğiniz RGB değerini buraya yazın */
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}


  
