/*! Color themes for Google Code Prettify | MIT License | github.com/jmblog/color-themes-for-google-code-prettify */

.prettyprint {
    background: #000;
    font-family: Menlo, "Bitstream Vera Sans Mono", "DejaVu Sans Mono", Monaco, Consolas, monospace;
    border: 0 !important;
    margin: 1px 0;
}

.pln {
    color: #eee;
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
    margin: 0;
    color: #666;
}

li.L0,
li.L1,
li.L2,
li.L3,
li.L4,
li.L5,
li.L6,
li.L7,
li.L8,
li.L9 {
    background-color: #000;
    list-style-position: outside;
    list-style: decimal;
    border-left: 1px #707070 solid;
    margin-left: 3.8rem;
    padding-left: 2rem;
}
li.L0,
li.L2,
li.L4,
li.L6,
li.L8{
    background: #222;
}

/*sublime text同様のカラー*/
@media screen {
/* string content */
.str {
    color: #e7db74;
}
/* keyword */
.kwd {
    color: #f60;
}
/* comment */
.com {
    color: #93c;
}
/* type name */
.typ {
    color: #ccc;
}
/* literal value */
.lit {
    color: #ac80ff;
}
/* punctuation */
.pun {
    color: #eee;
}
/* lisp open bracket */
.opn {
    color: #eee;
}
/* lisp close bracket */
.clo {
    color: #eee;
}
/* markup tag name */
.tag {
    color: #f92472;
}
/* markup attribute name */
.atn {
    color: #a6cd28;
}
/* markup attribute value */
.atv {
    color: #e7db74;
}
/* declaration */
.dec {
    color: aqua !important;
}
/* variable name */
.var {
    color: #eee;
}
/* function name */
.fun {
    color: #fc0;
}
}/*media screen*/

pre.nocolor *{
    color: #eee !important;
}
/*folder*/
pre.nocolor em *{
    color: aqua !important;
}
pre.nocolor em *::before{
    content: "\f07c";
    font-family: "Font Awesome 5 Free";
    font-weight:900;
    padding-right:0.1em;
}
pre.nocolor i *{
    color: black !important;
}
pre.nocolor b *{
    color: #e7db74 !important;
}
pre.nocolor b *::after{
    content: "：";
}
pre.nocolor ol.linenums li{
    color: #666 !important;
    line-height: 1.4;
}