mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
329 B
CSS
26 lines
329 B
CSS
.token.operator,
|
|
.token.punctuation,
|
|
.token.builtin,
|
|
.token.variable {
|
|
color: var(--token);
|
|
}
|
|
|
|
.token.keyword,
|
|
.token.string,
|
|
.token.number,
|
|
.token.boolean {
|
|
color: var(--darker-gray);
|
|
}
|
|
|
|
.token.comment {
|
|
color: var(--comment);
|
|
}
|
|
|
|
.token.class-name,
|
|
.token.function,
|
|
.token.tag,
|
|
.token.attr-name {
|
|
color: var(--name);
|
|
}
|
|
|