chiya/assets/css/lolight.css

24 lines
488 B
CSS
Raw Normal View History

2023-03-13 02:04:07 +01:00
.ll-nam { /* words */
2023-05-22 20:05:44 +02:00
@apply text-theme-base;
2023-03-13 02:04:07 +01:00
}
.ll-num { /* numbers */
2023-05-22 20:05:44 +02:00
color: rgb(var(--color-purple));
2023-03-13 02:04:07 +01:00
}
.ll-str { /* strings */
2023-05-22 20:05:44 +02:00
color: rgb(var(--color-yellow));
2023-03-13 02:04:07 +01:00
}
.ll-rex { /* regular expressions */
2023-05-22 20:05:44 +02:00
color: rgb(var(--color-yellow));
2023-03-13 02:04:07 +01:00
}
.ll-pct { /* operators, punctation */
2023-05-22 20:05:44 +02:00
@apply text-theme-primary;
2023-03-13 02:04:07 +01:00
}
.ll-key { /* keywords */
2023-05-22 20:05:44 +02:00
@apply font-bold;
color: rgb(var(--color-blue));
2023-03-13 02:04:07 +01:00
}
.ll-com { /* comments */
2023-05-22 20:05:44 +02:00
@apply text-theme-base1;
2023-03-13 02:04:07 +01:00
font-style: italic;
}