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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
/************************************************************************/
/* * The Coq Proof Assistant / The Coq Development Team */
/* v * Copyright INRIA, CNRS and contributors */
/* <O___,, * (see version control and CREDITS file for authors & dates) */
/* \VV/ **************************************************************/
/* // * This file is distributed under the terms of the */
/* * GNU Lesser General Public License Version 2.1 */
/* * (see LICENSE file for the text of the license) */
/************************************************************************/
.ansi-bold {
font-weight: bold;
}
.ansi-italic {
font-style: italic;
}
.ansi-negative {
filter: invert(100%);
}
.ansi-underline {
text-decoration: underline;
}
.ansi-no-bold {
font-weight: normal;
}
.ansi-no-italic {
font-style: normal;
}
.ansi-no-negative {
filter: invert(0%);
}
.ansi-no-underline {
text-decoration: none;
}
.ansi-fg-black {
color: #babdb6;
}
.ansi-fg-red {
color: #a40000;
}
.ansi-fg-green {
color: #4e9a06;
}
.ansi-fg-yellow {
color: #ce5c00;
}
.ansi-fg-blue {
color: #204a87;
}
.ansi-fg-magenta {
color: #5c3566;
}
.ansi-fg-cyan {
color: #8f5902;
}
.ansi-fg-white {
color: #ffffff;
}
.ansi-fg-light-black {
color: #d3d7cf;
}
.ansi-fg-light-red {
color: #cc0000;
}
.ansi-fg-light-green {
color: #346604; /* From tango.el */
}
.ansi-fg-light-yellow {
color: #f57900;
}
.ansi-fg-light-blue {
color: #3465a4;
}
.ansi-fg-light-magenta {
color: #75507b;
}
.ansi-fg-light-cyan {
color: #c14d11;
}
.ansi-fg-light-white {
color: #555753;
}
.ansi-fg-default {
color: #eeeeec;
}
.ansi-bg-black {
background-color: #babdb6;
}
.ansi-bg-red {
background-color: #a40000;
}
.ansi-bg-green {
background-color: #4e9a06;
}
.ansi-bg-yellow {
background-color: #ce5c00;
}
.ansi-bg-blue {
background-color: #204a87;
}
.ansi-bg-magenta {
background-color: #5c3566;
}
.ansi-bg-cyan {
background-color: #8f5902;
}
.ansi-bg-white {
background-color: #2e3436;
}
.ansi-bg-default {
background-color: transparent;
}
|