Update code span color.

This commit is contained in:
Dillon Kearns 2021-04-21 18:03:03 -07:00
parent 11f440b09f
commit b9b65fe82b
2 changed files with 38 additions and 16 deletions

View File

@ -25,6 +25,7 @@ renderer =
[ css
[ Tw.font_semibold
, Tw.font_medium
, Css.color (Css.rgb 226 0 124) |> Css.important
]
]
[ Html.text content ]

View File

@ -11,8 +11,8 @@ code.elmsh {
}
code {
font-family: 'Roboto Mono' !important;
font-size: 20px !important;
font-family: "Roboto Mono" !important;
/* font-size: 20px !important; */
line-height: 28px;
}
@ -26,18 +26,39 @@ code {
}
.elmsh {
color: #f8f8f2;
background: #000;
color: #f8f8f2;
background: #000;
}
.elmsh-hl {
background: #343434;
}
.elmsh-add {
background: #003800;
}
.elmsh-del {
background: #380000;
}
.elmsh-comm {
color: #75715e;
}
.elmsh1 {
color: #ae81ff;
}
.elmsh2 {
color: #e6db74;
}
.elmsh3 {
color: #66d9ef;
}
.elmsh4 {
color: #f92672;
}
.elmsh5 {
color: #a6e22e;
}
.elmsh6 {
color: #ae81ff;
}
.elmsh7 {
color: #fd971f;
}
.elmsh-hl {background: #343434;}
.elmsh-add {background: #003800;}
.elmsh-del {background: #380000;}
.elmsh-comm {color: #75715e;}
.elmsh1 {color: #ae81ff;}
.elmsh2 {color: #e6db74;}
.elmsh3 {color: #66d9ef;}
.elmsh4 {color: #f92672;}
.elmsh5 {color: #a6e22e;}
.elmsh6 {color: #ae81ff;}
.elmsh7 {color: #fd971f;}