O css eu implementei as cores como variáveis para ficar mais fácil na hora de modificar e utiliza-las na stylesheet
:root{
--bege-fundo:#E8E3D5;
--marrom-texto:#6A5952;
--verde-botao: #B1C99C;
}
body{
background-color: var(--bege-fundo);
color:var(--marrom-texto);
}