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.
25 lines
323 B
CSS
25 lines
323 B
CSS
.keyword {
|
|
font-weight: bold;
|
|
color: var(--keyword);
|
|
}
|
|
|
|
.token.operator,
|
|
.token.punctuation,
|
|
.token.string,
|
|
.token.number,
|
|
.token.builtin,
|
|
.token.variable {
|
|
color: var(--token);
|
|
}
|
|
|
|
.token.comment {
|
|
color: var(--comment);
|
|
}
|
|
|
|
.token.class-name,
|
|
.token.function,
|
|
.token.tag,
|
|
.token.attr-name {
|
|
color: var(--name);
|
|
}
|