:root {
    --theme-white: #ffffff;
    --theme-black: #000000;
    --theme-isabelline: #F5F3EB;
    --theme-chinese-black: #0D0E11;
    --theme-bronze: #AA9A59;
    --theme-orange: #FF6F01;
    --theme-blanched-almond: #FF6F01;
    --theme-dark-gray: #121212;  
	  --theme-gray: #939393;
  --theme-linen: #F5F3EB;
	--theme-silver-gray: #868686;
}

/* Text Color Classes */
.theme-text-white {
    color: var(--theme-white);
}

.theme-text-black {
    color: var(--theme-black);
}

.theme-text-isabelline {
    color: var(--theme-isabelline);
}

.theme-text-chinese-black {
    color: var(--theme-chinese-black);
}

.theme-text-bronze {
    color: var(--theme-bronze);
}

.theme-text-orange {
    color: var(--theme-orange);
}

.theme-text-blanched-almond {
    color: var(--theme-blanched-almond);
}

.theme-text-dark-gray {
    color: var(--theme-dark-gray);  
}
.theme-text-gray {
  color: var(--theme-gray);
}
.theme-text-linen {
  color: var(--theme-linen);
}
.theme-text-silver-gray {
  color: var(--theme-silver-gray);
}
/* Background Color Classes */
.theme-bg-white {
    background-color: var(--theme-white);
}

.theme-bg-black {
    background-color: var(--theme-black);
}

.theme-bg-isabelline {
    background-color: var(--theme-isabelline);
}

.theme-bg-chinese-black {
    background-color: var(--theme-chinese-black);
}

.theme-bg-bronze {
    background-color: var(--theme-bronze);
}

.theme-bg-orange {
    background-color: var(--theme-orange);
}

.theme-bg-blanched-almond {
    background-color: var(--theme-blanched-almond);
}

.theme-bg-dark-gray {
    background-color: var(--theme-dark-gray);  
}
.theme-bg-gray {
  background-color: var(--theme-gray);
}

.theme-bg-linen {
  background-color: var(--theme-linen);
}
.theme-bg-silver-gray {
  background-color: var(--theme-silver-gray);
}