##// END OF EJS Templates
Test case for setting only lower or upper, no sensible default so should be an error
Test case for setting only lower or upper, no sensible default so should be an error

File last commit:

r11312:775f86e1
r17704:400433c5
Show More
ansicolors.less
25 lines | 745 B | text/x-less | LessCssLexer
Brian E. Granger
Splitting notebook.less into separate files.
r10730 /* CSS font colors for translated ANSI colors. */
MinRK
add ansi background colors
r11312 .ansibold {font-weight: bold;}
/* use dark versions for foreground, to improve visibility */
Brian E. Granger
Splitting notebook.less into separate files.
r10730 .ansiblack {color: black;}
.ansired {color: darkred;}
.ansigreen {color: darkgreen;}
.ansiyellow {color: brown;}
.ansiblue {color: darkblue;}
.ansipurple {color: darkviolet;}
.ansicyan {color: steelblue;}
MinRK
add ansi background colors
r11312 .ansigray {color: gray;}
/* and light for background, for the same reason */
.ansibgblack {background-color: black;}
.ansibgred {background-color: red;}
.ansibggreen {background-color: green;}
.ansibgyellow {background-color: yellow;}
.ansibgblue {background-color: blue;}
.ansibgpurple {background-color: magenta;}
.ansibgcyan {background-color: cyan;}
.ansibggray {background-color: gray;}
Brian E. Granger
Splitting notebook.less into separate files.
r10730