:root {
  --ansi-0-color: rgb(78, 78, 78); /* Equivalent to 0.3058823529411765, 0.3058823529411765, 0.3058823529411765 */
  --ansi-1-color: rgb(175, 95, 95); /* Equivalent to 0.6862745098039216, 0.37254901960784315, 0.37254901960784315 */
  --ansi-2-color: rgb(95, 136, 95); /* Equivalent to 0.37254901960784315, 0.5333333333333333, 0.37254901960784315 */
  --ansi-3-color: rgb(175, 135, 96); /* Equivalent to 0.6862745098039216, 0.5294117647058824, 0.3764705882352941 */
  --ansi-4-color: rgb(95, 135, 174); /* Equivalent to 0.37254901960784315, 0.5294117647058824, 0.6823529411764706 */
  --ansi-5-color: rgb(135, 95, 135); /* Equivalent to 0.5294117647058824, 0.37254901960784315, 0.5294117647058824 */
  --ansi-6-color: rgb(95, 135, 135); /* Equivalent to 0.37254901960784315, 0.5294117647058824, 0.5294117647058824 */
  --ansi-7-color: rgb(228, 228, 228); /* Equivalent to 0.8941176470588236, 0.8941176470588236, 0.8941176470588236 */
  --ansi-8-color: rgb(58, 58, 58); /* Equivalent to 0.22745098039215686, 0.22745098039215686, 0.22745098039215686 */
  --ansi-9-color: rgb(135, 1, 0); /* Equivalent to 0.5294117647058824, 0.00392156862745098, 0.0 */
  --ansi-10-color: rgb(0, 95, 0); /* Equivalent to 0.0, 0.37254901960784315, 0.0 */
  --ansi-11-color: rgb(216, 134, 95); /* Equivalent to 0.8470588235294118, 0.5254901960784314, 0.37254901960784315 */
  --ansi-12-color: rgb(0, 135, 175); /* Equivalent to 0.0, 0.5294117647058824, 0.6862745098039216 */
  --ansi-13-color: rgb(135, 2, 95); /* Equivalent to 0.5294117647058824, 0.00784313725490196, 0.37254901960784315 */
  --ansi-14-color: rgb(0, 135, 135); /* Equivalent to 0.0, 0.5294117647058824, 0.5294117647058824 */
  --ansi-15-color: rgb(238, 238, 238); /* Equivalent to 0.9333333333333333, 0.9333333333333333, 0.9333333333333333 */

  --foreground-color: var(--ansi-0-color);
  --background-color: rgb(218, 218, 218); /* Equivalent to 0.8549019607843137, 0.8549019607843137, 0.8549019607843137 */
  --bold-color: var(--ansi-8-color);
  --cursor-color: var(--ansi-0-color);
  --cursor-text-color: var(--background-color);
  --selected-text-color: var(--ansi-0-color);
  --selection-color: rgb(175, 215, 215); /* Equivalent to 0.6862745098039216, 0.8431372549019608, 0.8431372549019608 */
}

/* Applying styles using custom properties */
body {
    color: var(--foreground-color); /* Applying text color */
    background-color: var(--background-color); /* Applying background color */
    /* Other styles for the body */
}

h1 {
    color: var(--ansi-1-color);
}


h2 {
    color: var(--ansi-2-color);
}

h3 {
    color: var(--ansi-3-color);
}
