mirror of
https://github.com/naoufalzerai/zerai.xyz.git
synced 2025-11-09 23:15:53 +00:00
51 lines
576 B
CSS
51 lines
576 B
CSS
/**
|
|
* Github-like theme for Prism.js
|
|
* @author lvv https://lvv.me
|
|
*/
|
|
|
|
pre {
|
|
color: #24292e;
|
|
background-color: #f6f8fa;
|
|
}
|
|
|
|
.token.function,
|
|
.token.number,
|
|
.token.constant {
|
|
color: #005cc5;
|
|
}
|
|
|
|
.token.boolean,
|
|
.token.keyword,
|
|
.token.key.atrule {
|
|
color: #d73a49;
|
|
}
|
|
|
|
.token.builtin,
|
|
.token.class-name {
|
|
color: #6f42c1;
|
|
}
|
|
|
|
.token.string {
|
|
color: #032f62;
|
|
}
|
|
|
|
.token.comment,
|
|
.token.doctype {
|
|
color: #6a737d;
|
|
}
|
|
|
|
.token.punctuation {
|
|
color: #d73a49;
|
|
}
|
|
|
|
.token.tag {
|
|
color: #22863a;
|
|
}
|
|
|
|
.token.attr-name {
|
|
color: #6f42c1;
|
|
}
|
|
|
|
.token.attr-value {
|
|
color: #032f62;
|
|
} |