mirror of
https://github.com/anoma/juvix.git
synced 2024-12-13 11:16:48 +03:00
45 lines
492 B
CSS
45 lines
492 B
CSS
|
/* Color palette based on https://www.nordtheme.com/ */
|
||
|
body {
|
||
|
background-color: #2e3440;
|
||
|
}
|
||
|
|
||
|
.ju-inductive {
|
||
|
color: #a3be8c;
|
||
|
}
|
||
|
|
||
|
.ju-constructor {
|
||
|
color: #b48ead;
|
||
|
}
|
||
|
|
||
|
.ju-function {
|
||
|
color: #ebcb8b;
|
||
|
}
|
||
|
|
||
|
.ju-axiom {
|
||
|
color: #bf616a;
|
||
|
}
|
||
|
|
||
|
.ju-keyword {
|
||
|
color: #81a1c1;
|
||
|
}
|
||
|
|
||
|
.ju-delimiter {
|
||
|
color: #5e81ac;
|
||
|
}
|
||
|
|
||
|
.ju-var {
|
||
|
color: #d8dee9
|
||
|
}
|
||
|
|
||
|
.ju-number {
|
||
|
color: #d8dee9
|
||
|
}
|
||
|
|
||
|
a:link, a:visited {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:hover, a.hover-highlight {
|
||
|
background-color: #4c566a;
|
||
|
}
|