31 lines
315 B
CSS
31 lines
315 B
CSS
BODY {
|
|
color: white;
|
|
font-weight: normal;
|
|
background-color: black;
|
|
}
|
|
|
|
.keyword {
|
|
color: white;
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.type {
|
|
color: white;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.string {
|
|
color: silver;
|
|
}
|
|
|
|
.comment {
|
|
color: gray;
|
|
font-style: italic;
|
|
}
|
|
|
|
.number {
|
|
color: white;
|
|
}
|
|
|