mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-27 11:05:46 +03:00
Update code span color.
This commit is contained in:
parent
11f440b09f
commit
b9b65fe82b
@ -25,6 +25,7 @@ renderer =
|
||||
[ css
|
||||
[ Tw.font_semibold
|
||||
, Tw.font_medium
|
||||
, Css.color (Css.rgb 226 0 124) |> Css.important
|
||||
]
|
||||
]
|
||||
[ Html.text content ]
|
||||
|
53
examples/docs/static/syntax.css
vendored
53
examples/docs/static/syntax.css
vendored
@ -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;}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user