:root {
    --blue: #61aeee;
    --orange: #ffa500;
    --green: #98c379;
    --reserved-words: #388bff;
    --purple: #8f7ee7;
    --metadata-functions: #da62ac;
    
}

.keyword {
    color: var(--blue);
}

.other_words {
    color: var(--purple);
}

.system_words {
    color: var(--orange);
}

.string {
    color: var(--green);
}


.keyword, .other_words, .system_words, .string {
    font-weight: bold;
}

.reserved-words {
    color: var(--reserved-words);
}

.metadata-functions {
   color: var(--metadata-functions);
}

.configuration-functions {
    color: #333;
}

.conversion-functions {
    color: #333;
}

.cursor-functions {
    color: #333;
}

.data-types-functions {
    color: #333;
}

.graph-functions {
    color: #333;
}

.json-functions {
    color: #333;
}

.logical-functions {
    color: #333;
}

.mathematical-functions {
    color: #333;
}

.security-functions {
    color: #333;
}

.string-functions {
    color: #333;
}

.system-functions {
    color: #333;
}

.system-statistical-functions {
    color: #333;
}

.text-image-functions {
    color: #333;
}

