mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-24 23:39:02 -06:00
48 lines
753 B
CSS
48 lines
753 B
CSS
pre[class*="language-"] {
|
|
color: theme("colors.slate.50");
|
|
}
|
|
|
|
.token.tag,
|
|
.token.class-name,
|
|
.token.selector,
|
|
.token.selector .class,
|
|
.token.selector.class,
|
|
.token.function {
|
|
color: theme("colors.pink.400");
|
|
}
|
|
|
|
.token.attr-name,
|
|
.token.keyword,
|
|
.token.rule,
|
|
.token.pseudo-class,
|
|
.token.important {
|
|
color: theme("colors.slate.300");
|
|
}
|
|
|
|
.token.module {
|
|
color: theme("colors.pink.400");
|
|
}
|
|
|
|
.token.attr-value,
|
|
.token.class,
|
|
.token.string,
|
|
.token.property {
|
|
color: theme("colors.teal.400");
|
|
}
|
|
|
|
.token.punctuation,
|
|
.token.attr-equals {
|
|
color: theme("colors.slate.500");
|
|
}
|
|
|
|
.token.unit,
|
|
.language-css .token.function {
|
|
color: theme("colors.teal.200");
|
|
}
|
|
|
|
.token.comment,
|
|
.token.operator,
|
|
.token.combinator {
|
|
color: theme("colors.slate.400");
|
|
}
|