1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
span.regex_literal {
color: dimgrey;
}
span.regex_at {
/*color: rgb(204, 120, 50)*/
color: orangered;
}
span.regex_repeat_brace {
/*color: rgb(204, 120, 50)*/
color: orangered;
}
span.regex_branch {
/*color: rgb(204, 120, 50)*/
color: orangered;
}
span.regex_subpattern {
/*color: indianred !* rgb(255, 150, 50) *!*/
color: dodgerblue /* rgb(255, 150, 50) */
}
span.regex_in {
/*color: rgb(255, 150, 50)*/
color: darkorange
}
span.regex_category {
/*color: rgb(255, 150, 50)*/
color: darkseagreen;
}
span.regex_repeat {
/*color: rgb(51, 204, 255)*/
color: orangered;
}
span.regex_any {
/*color: rgb(204, 120, 50)*/
color: orangered;
}
code.regex {
font-size: 80%;
}
span.regex {
font-weight: bold;
}
|