add shellinabox to repo
This commit is contained in:
parent
3599d3e2e4
commit
6325b3f7c8
139
plugins/shellinabox-plugin.plg
Executable file
139
plugins/shellinabox-plugin.plg
Executable file
|
@ -0,0 +1,139 @@
|
||||||
|
<!DOCTYPE PLUGIN [
|
||||||
|
<!ENTITY name "shellinabox-plugin">
|
||||||
|
<!ENTITY author "dmacias72">
|
||||||
|
<!ENTITY version "2015.12.21">
|
||||||
|
<!ENTITY launch "Settings/&name;">
|
||||||
|
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master">
|
||||||
|
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
|
||||||
|
<!ENTITY pkgURL "&gitURL;/source/packages">
|
||||||
|
<!ENTITY pkgs "/boot/config/plugins/&name;">
|
||||||
|
<!ENTITY plgpath "/boot/config/plugins/&name;">
|
||||||
|
<!ENTITY plgname "&name;-&version;-x86_64-1">
|
||||||
|
<!ENTITY emhttp "/usr/local/emhttp/plugins/&name;">
|
||||||
|
]>
|
||||||
|
|
||||||
|
<PLUGIN name="&name;" author="&author;" launch="&launch;" version="&version;" pluginURL="&pluginURL;">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This Plugin installs and controls shellinabox for unRaid 6.1 All dependencies are installed as needed and is controlable from the webgui.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<CHANGES>
|
||||||
|
###2015.12.21
|
||||||
|
- move repo to unRAID-plugins
|
||||||
|
- change plugin name to shellinabox-plugin
|
||||||
|
- convert install and remove scripts
|
||||||
|
- add package md5 and unRAID version check
|
||||||
|
###2015.10.23
|
||||||
|
- fix "no version information" log errors
|
||||||
|
###2015.09.20
|
||||||
|
- update shellinabox packages to 2.19 (revision e30c33d)
|
||||||
|
- fix color styles
|
||||||
|
###2015.09.07
|
||||||
|
- fix start and stop scripts
|
||||||
|
###2015.09.06
|
||||||
|
- use markdown syntax and parse_plugin_cfg
|
||||||
|
- change color styles
|
||||||
|
###2015.09.05
|
||||||
|
- fixed start event
|
||||||
|
- add more color styles
|
||||||
|
- fixed icon and image on black theme
|
||||||
|
###2015.09.04
|
||||||
|
- start and stop events
|
||||||
|
- update run as user
|
||||||
|
- update image
|
||||||
|
###2015.09.03
|
||||||
|
- initial commit
|
||||||
|
</CHANGES>
|
||||||
|
|
||||||
|
|
||||||
|
<FILE Name="&pkgs;/shellinabox-2.19-x86_64-1sl.txz" Run="upgradepkg --install-new">
|
||||||
|
<URL>&pkgURL;/shellinabox-2.19-x86_64-1sl.txz</URL>
|
||||||
|
<MD5>96f21406d18181f469e732795d2965e8</MD5>
|
||||||
|
</FILE>
|
||||||
|
<FILE Name="&pkgs;/linux-pam-1.1.8-x86_64-1gds.txz" Run="upgradepkg --install-new">
|
||||||
|
<URL>&pkgURL;/linux-pam-1.1.8-x86_64-1gds.txz</URL>
|
||||||
|
<MD5>f5d4e99dc0b65f4d6b3bacf479c9c6e2</MD5>
|
||||||
|
</FILE>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The 'plugin' package file.
|
||||||
|
-->
|
||||||
|
<FILE Name="&plgpath;/&plgname;.txz">
|
||||||
|
<URL>&gitURL;/archive/&plgname;.txz</URL>
|
||||||
|
</FILE>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The 'plugin' package MD5 hash.
|
||||||
|
-->
|
||||||
|
<FILE Name="&plgpath;/&plgname;.md5">
|
||||||
|
<URL>&gitURL;/archive/&plgname;.md5</URL>
|
||||||
|
</FILE>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The 'install' script.
|
||||||
|
-->
|
||||||
|
<FILE Run="/bin/bash">
|
||||||
|
<INLINE>
|
||||||
|
#Verify unRAID Version
|
||||||
|
source /etc/unraid-version
|
||||||
|
if [[ ${version:0:3} == 6.0 ]]; then
|
||||||
|
echo "unRAID version 6.1 or higher is required"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
#remove old plugin name directory
|
||||||
|
if [ ! -d /usr/local/emhttp/plugins/shellinabox ]; then
|
||||||
|
rm -rf /usr/local/emhttp/plugins/shellinabox
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Verify and install plugin package
|
||||||
|
sum1=$(/usr/bin/md5sum &plgpath;/&plgname;.txz)
|
||||||
|
sum2=$(/usr/bin/cat &plgpath;/&plgname;.md5)
|
||||||
|
if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then
|
||||||
|
echo "Wrong 'plugin' package md5 hash."
|
||||||
|
rm &plgpath;/&plgname;.txz
|
||||||
|
rm &plgpath;/&plgname;.md5
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
upgradepkg --install-new &plgpath;/&plgname;.txz
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Update file permissions of scripts
|
||||||
|
chmod +0755 &emhttp;/scripts/*
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "-----------------------------------------------------------"
|
||||||
|
echo " &name; has been installed."
|
||||||
|
echo " This plugin requires Dynamix webGui to operate"
|
||||||
|
echo " Copyright 2015, &author;"
|
||||||
|
echo " Version: &version;"
|
||||||
|
echo "-----------------------------------------------------------"
|
||||||
|
echo ""
|
||||||
|
</INLINE>
|
||||||
|
</FILE>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The 'remove' script.
|
||||||
|
-->
|
||||||
|
<FILE Run="/bin/bash" Method="remove">
|
||||||
|
<INLINE>
|
||||||
|
/usr/local/emhttp/plugins/&name;/scripts/stop
|
||||||
|
removepkg &plgpath;/*.txz
|
||||||
|
rm -rf &emhttp;
|
||||||
|
rm -f &plgpath;/&plgname;.txz
|
||||||
|
rm -f &plgpath;/&plgname;.md5
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "-----------------------------------------------------------"
|
||||||
|
echo " &name; has been removed."
|
||||||
|
echo " Copyright 2015, &author;"
|
||||||
|
echo " Version: &version;"
|
||||||
|
echo "-----------------------------------------------------------"
|
||||||
|
echo ""
|
||||||
|
</INLINE>
|
||||||
|
</FILE>
|
||||||
|
|
||||||
|
</PLUGIN>
|
1
source/shellinabox-plugin/install/doinst.sh
Normal file
1
source/shellinabox-plugin/install/doinst.sh
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#!/bin/sh
|
19
source/shellinabox-plugin/install/slack-desc
Normal file
19
source/shellinabox-plugin/install/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# HOW TO EDIT THIS FILE:
|
||||||
|
# The "handy ruler" below makes it easier to edit a package description.
|
||||||
|
# Line up the first '|' above the ':' following the base package name, and
|
||||||
|
# the '|' on the right side marks the last column you can put a character in.
|
||||||
|
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||||
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||||
|
|
||||||
|
|-----handy-ruler------------------------------------------------------|
|
||||||
|
shellinabox-plugin: Shell In A Box unRAID 6.1+ Plugin
|
||||||
|
shellinabox-plugin:
|
||||||
|
shellinabox-plugin: Shell In A Box implements a web server that can export arbitrary
|
||||||
|
shellinabox-plugin: command line tools to a web based terminal emulator. A Command Line
|
||||||
|
shellinabox-plugin: tool is created under the Tools menu.
|
||||||
|
shellinabox-plugin:
|
||||||
|
shellinabox-plugin:
|
||||||
|
shellinabox-plugin:
|
||||||
|
shellinabox-plugin: dmacias72/unRAID
|
||||||
|
shellinabox-plugin: https://github.com/dmacias72/unRAID-plugins
|
||||||
|
shellinabox-plugin:
|
37
source/shellinabox-plugin/pkg_build.sh
Executable file
37
source/shellinabox-plugin/pkg_build.sh
Executable file
|
@ -0,0 +1,37 @@
|
||||||
|
#!/bin/bash
|
||||||
|
DIR="$(dirname "$(readlink -f ${BASH_SOURCE[0]})")"
|
||||||
|
tmpdir=/tmp/tmp.$(( $RANDOM * 19318203981230 + 40 ))
|
||||||
|
plugin=$(basename ${DIR})
|
||||||
|
archive="$(dirname $(dirname ${DIR}))/archive"
|
||||||
|
version=$(date +"%Y.%m.%d")
|
||||||
|
package="${archive}/${plugin}-${version}-x86_64-1.txz"
|
||||||
|
md5="${archive}/${plugin}-${version}-x86_64-1.md5"
|
||||||
|
|
||||||
|
if [[ -f $package ]]; then
|
||||||
|
for x in a b c d e d f g h ; do
|
||||||
|
package="${archive}/${plugin}-${version}${x}-x86_64-1.txz"
|
||||||
|
md5="${archive}/${plugin}-${version}${x}-x86_64-1.md5"
|
||||||
|
if [[ ! -f $package ]]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p $tmpdir
|
||||||
|
cd "$DIR"
|
||||||
|
cp --parents -f $(find . -type f ! \( -iname "pkg_build.sh" -o -iname "sftp-config.json" -o -iname ".DS_Store" \) ) $tmpdir/
|
||||||
|
cd "$tmpdir/"
|
||||||
|
makepkg -l y -c y "${package}"
|
||||||
|
cd "$archive/"
|
||||||
|
md5sum $(basename "$package") > "$md5"
|
||||||
|
rm -rf "$tmpdir"
|
||||||
|
|
||||||
|
# Verify and install plugin package
|
||||||
|
sum1=$(md5sum "${package}")
|
||||||
|
sum2=$(cat "$md5")
|
||||||
|
if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then
|
||||||
|
echo "Checksum mismatched.";
|
||||||
|
rm "$md5" "${package}"
|
||||||
|
else
|
||||||
|
echo "Checksum matched."
|
||||||
|
fi
|
|
@ -0,0 +1,29 @@
|
||||||
|
Menu="UNRAID-OS"
|
||||||
|
Title="Command Line"
|
||||||
|
Type="xmenu"
|
||||||
|
---
|
||||||
|
<?php
|
||||||
|
$sName = "shellinaboxd";
|
||||||
|
$shellinabox_cfg = parse_plugin_cfg("shellinabox");
|
||||||
|
$shellinabox_port = (isset($shellinabox_cfg['PORT']) && is_numeric($shellinabox_cfg['PORT']) && $shellinabox_cfg['PORT'] > 0 && $shellinabox_cfg['PORT'] < 65535 ) ? $shellinabox_cfg['PORT'] : "8088";
|
||||||
|
?>
|
||||||
|
<style>
|
||||||
|
iframe {
|
||||||
|
height: 600px;
|
||||||
|
width: 100%;
|
||||||
|
resize: both;
|
||||||
|
overflow: auto;
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<iframe id="shell" src="https://<?=$var['NAME'];?>:<?=$shellinabox_port;?>">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
showStatus('<?=$sName;?>');
|
||||||
|
});
|
||||||
|
</script>
|
|
@ -0,0 +1,340 @@
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Lesser General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
{description}
|
||||||
|
Copyright (C) {year} {fullname}
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
{signature of Ty Coon}, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
consider it more useful to permit linking proprietary applications with the
|
||||||
|
library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License.
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
**Command Line Tool**
|
||||||
|
|
||||||
|
Shell In A Box implements a web server that can export arbitrary command line tools to a web based terminal emulator. A Command Line tool is created under the Tools menu.
|
||||||
|
|
|
@ -0,0 +1,103 @@
|
||||||
|
Icon="shellinabox.png"
|
||||||
|
Menu="NetworkServices"
|
||||||
|
Title="Command Line"
|
||||||
|
---
|
||||||
|
<?php
|
||||||
|
$sName = "shellinaboxd";
|
||||||
|
$shellinabox_cfg = parse_plugin_cfg("shellinabox-plugin");
|
||||||
|
$shellinabox_service = isset($shellinabox_cfg['SERVICE']) ? $shellinabox_cfg['SERVICE'] : "disable";
|
||||||
|
$shellinabox_runas = isset($shellinabox_cfg['RUNAS']) ? $shellinabox_cfg['RUNAS'] : "nobody";
|
||||||
|
$shellinabox_port = (isset($shellinabox_cfg['PORT']) && is_numeric($shellinabox_cfg['PORT']) && $shellinabox_cfg['PORT'] > 0 && $shellinabox_cfg['PORT'] < 65535 ) ? $shellinabox_cfg['PORT'] : "4200";
|
||||||
|
$shellinabox_running = trim(shell_exec( "[ -f /proc/`cat /var/run/shellinaboxd.pid 2> /dev/null`/exe ] && echo 'yes' || echo 'no' 2> /dev/null" ));
|
||||||
|
$shellinabox_version = shell_exec( "/usr/sbin/shellinaboxd --version 2>&1 | grep ShellInABox | sed -e 's/^ShellInABox version //'" );
|
||||||
|
$shellinabox_version = ($shellinabox_running == "yes") ?
|
||||||
|
"<a style='color:green;' target='_blank' href='https://".$var['NAME'].":".$shellinabox_port."' title='Click on link then accept security, then /Tools/CommandLine will work'><b>$shellinabox_version</b></a>":
|
||||||
|
"<b><font style='color:orange;'>$shellinabox_version</font></b>";
|
||||||
|
?>
|
||||||
|
|
||||||
|
<form markdown="1" name="shellinabox_settings" method="POST" action="/update.php" target="progressFrame">
|
||||||
|
<input type="hidden" name="#file" value="shellinabox-plugin/shellinabox-plugin.cfg" />
|
||||||
|
<input type="hidden" id="command" name="#command" value="" />
|
||||||
|
|
||||||
|
Enable Shellinabox Server <?=$shellinabox_version;?>:
|
||||||
|
: <select id="SERVICE" name="SERVICE" size="1" onChange="checkRUNNING(this.form);">
|
||||||
|
<?=mk_option($shellinabox_service, "disable", "No");?>
|
||||||
|
<?=mk_option($shellinabox_service, "enable", "Yes");?>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
Port:
|
||||||
|
: <input id="PORT" type="text" class="stopped" name="PORT" maxlength="40" value="<?=$shellinabox_port;?>" title="port must be 0-65535" placeholder="Default Port is 8000" >
|
||||||
|
|
||||||
|
Run as User:
|
||||||
|
: <select id="USERS" class="stopped" title="select user, cannot be root" size="1" onChange="checkUSER(this.form, '<?=$shellinabox_runas;?>');">
|
||||||
|
<?=mk_option($shellinabox_runas, "nobody", "nobody");?>
|
||||||
|
<option value='other' <?=($shellinabox_runas != "root" && $shellinabox_runas != "nobody")?"selected=yes":"";?>>other</option>
|
||||||
|
</select>
|
||||||
|
<input type="hidden" name="RUNAS" style="width:222px" maxlength="40" value=<?=$shellinabox_runas;?> >
|
||||||
|
|
||||||
|
<input id="DEFAULT" class="stopped" type="submit" value="Default" onClick="resetDATA(this.form)">
|
||||||
|
: <input id="btnApply" type="submit" value="Apply" onClick="verifyDATA(this.form)"><input type="button" value="Done" onClick="done()">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
showStatus('<?=$sName;?>');
|
||||||
|
checkRUNNING(document.shellinabox_settings);
|
||||||
|
checkUSER(document.shellinabox_settings,'<?=$shellinabox_runas;?>');
|
||||||
|
});
|
||||||
|
|
||||||
|
function resetDATA(form) {
|
||||||
|
form.PORT.value = "4200";
|
||||||
|
form.RUNAS.value = "nobody";
|
||||||
|
form.USERS.value = "nobody";
|
||||||
|
}
|
||||||
|
|
||||||
|
function checkRUNNING(form) {
|
||||||
|
if ("<?=$shellinabox_running;?>" == "yes")
|
||||||
|
{
|
||||||
|
$(".stopped").prop("disabled", true);
|
||||||
|
form.btnApply.disabled = "disabled";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
$(".stopped").prop("disabled", (form.SERVICE.value == "enable"));
|
||||||
|
if (form.SERVICE.value == "enable")
|
||||||
|
form.command.value = "/usr/local/emhttp/plugins/shellinabox-plugin/scripts/start";
|
||||||
|
else {
|
||||||
|
form.command.value = "/usr/local/emhttp/plugins/shellinabox-plugin/scripts/stop";
|
||||||
|
form.btnApply.disabled = (form.SERVICE.value == "enable");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function checkUSER(form, currentUSER) {
|
||||||
|
if (form.USERS.selectedIndex < 1 ) {
|
||||||
|
form.RUNAS.value = form.USERS.options[form.USERS.selectedIndex].value;
|
||||||
|
form.RUNAS.type = "hidden";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
form.RUNAS.value = currentUSER;
|
||||||
|
if (form.RUNAS.value == "root")
|
||||||
|
form.RUNAS.value = "nobody";
|
||||||
|
form.RUNAS.type = "text";
|
||||||
|
form.RUNAS.title = "Run As User Cannot be Root";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function verifyDATA(form) {
|
||||||
|
if (isNumber(form.PORT.value)){
|
||||||
|
if (form.PORT.value < 0 || form.PORT.value > 65535){
|
||||||
|
form.PORT.value = "4200";
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
form.PORT.value = "4200";
|
||||||
|
}
|
||||||
|
if (form.RUNAS.value == null || form.RUNAS.value == "" || form.RUNAS.value == "root" ){
|
||||||
|
form.RUNAS.value = "nobody";
|
||||||
|
$shellinabox_runas = "nobody";
|
||||||
|
}
|
||||||
|
form.SERVICE.value = form.SERVICE.value.replace(/ /g,"_");
|
||||||
|
form.PORT.value = form.PORT.value.replace(/ /g,"_");
|
||||||
|
form.RUNAS.value = form.RUNAS.value.replace(/ /g,"_");
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
source /boot/config/plugins/shellinabox-plugin/shellinabox-plugin.cfg
|
||||||
|
if [ $SERVICE = enable ]; then
|
||||||
|
/usr/local/emhttp/plugins/shellinabox-plugin/scripts/start
|
||||||
|
fi
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
/usr/local/emhttp/plugins/shellinabox-plugin/scripts/stop
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 591 B |
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# read our configuration
|
||||||
|
source /boot/config/plugins/shellinabox-plugin/shellinabox-plugin.cfg
|
||||||
|
|
||||||
|
prog="shellinaboxd"
|
||||||
|
SHELLINABOXD="/usr/sbin/$prog"
|
||||||
|
LOCKFILE="/var/lock/$prog"
|
||||||
|
PIDFILE="/var/run/$prog.pid"
|
||||||
|
STYLES="/usr/local/emhttp/plugins/shellinabox-plugin/styles"
|
||||||
|
CONFIG="/boot/config/plugins/shellinabox-plugin"
|
||||||
|
USER_CSS="Color:+$STYLES/color.css,Monochrome:-$STYLES/monochrome.css;White:+$STYLES/white-on-black.css,Black:-$STYLES/black-on-white.css,Blue:-$STYLES/blue-on-black.css,Green:-$STYLES/green-on-black.css,Pink:-$STYLES/pink-on-black.css,Purple:-$STYLES/purple-on-black.css,Red:-$STYLES/red-on-black.css,Yellow:-$STYLES/yellow-on-black.css"
|
||||||
|
|
||||||
|
# no-op if already running
|
||||||
|
if [ ! -r $PIDFILE ]; then
|
||||||
|
sleep 1
|
||||||
|
nohup /usr/sbin/$prog --user=$RUNAS --background=$PIDFILE --port=$PORT --cert=$CONFIG --user-css=$USER_CSS > /dev/null 2>&1 | logger -tshellinaboxd &
|
||||||
|
touch $LOCKFILE
|
||||||
|
TIMER=0
|
||||||
|
while [ ! -e $PIDFILE ]; do
|
||||||
|
sleep 1
|
||||||
|
let TIMER=$TIMER+1
|
||||||
|
if [ $TIMER -gt 5 ]; then
|
||||||
|
echo -n "$PIDFILE not created"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
|
@ -0,0 +1,20 @@
|
||||||
|
#!/bin/sh
|
||||||
|
prog="shellinaboxd"
|
||||||
|
SHELLINABOXD="/usr/sbin/$prog"
|
||||||
|
LOCKFILE="/var/lock/$prog"
|
||||||
|
PIDFILE="/var/run/$prog.pid"
|
||||||
|
|
||||||
|
# no-op if not running
|
||||||
|
if [ -r $PIDFILE ]; then
|
||||||
|
TIMER=0
|
||||||
|
while `killall $prog 2>/dev/null`; do
|
||||||
|
sleep 1
|
||||||
|
TIMER=$((TIMER+1))
|
||||||
|
if [ $TIMER -ge 30 ]; then
|
||||||
|
killall -9 $prog
|
||||||
|
sleep 1
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
rm -f $LOCKFILE && rm -f $PIDFILE
|
||||||
|
fi
|
|
@ -0,0 +1,54 @@
|
||||||
|
#vt100 #cursor.bright {
|
||||||
|
background-color: black;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #cursor.dim {
|
||||||
|
background-color: white;
|
||||||
|
opacity: 0.2;
|
||||||
|
-moz-opacity: 0.2;
|
||||||
|
filter: alpha(opacity=20);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDef {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDefR {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDef {
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDefR {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDef {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDefR {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDef {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
#vt100 #cursor.bright {
|
||||||
|
background-color: blue;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #cursor.dim {
|
||||||
|
background-color: black;
|
||||||
|
opacity: 0.2;
|
||||||
|
-moz-opacity: 0.2;
|
||||||
|
filter: alpha(opacity=20);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable {
|
||||||
|
color: #0000ff;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #0000ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDef {
|
||||||
|
color: #0000ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDefR {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDef {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDefR {
|
||||||
|
background-color: #0000ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDef {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDefR {
|
||||||
|
color: #0000ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDef {
|
||||||
|
background-color: #0000ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
|
@ -0,0 +1,528 @@
|
||||||
|
/* DEFINES_COLORS */
|
||||||
|
|
||||||
|
/* SYSTEM colors */
|
||||||
|
#vt100 .ansiDef { }
|
||||||
|
#vt100 .ansiDefR { }
|
||||||
|
|
||||||
|
#vt100 .ansi0 { color: #000000; }
|
||||||
|
#vt100 .ansi1 { color: #cd0000; }
|
||||||
|
#vt100 .ansi2 { color: #00cd00; }
|
||||||
|
#vt100 .ansi3 { color: #cdcd00; }
|
||||||
|
#vt100 .ansi4 { color: #0000ee; }
|
||||||
|
#vt100 .ansi5 { color: #cd00cd; }
|
||||||
|
#vt100 .ansi6 { color: #00cdcd; }
|
||||||
|
#vt100 .ansi7 { color: #e5e5e5; }
|
||||||
|
#vt100 .ansi8 { color: #7f7f7f; }
|
||||||
|
#vt100 .ansi9 { color: #ff0000; }
|
||||||
|
#vt100 .ansi10 { color: #00ff00; }
|
||||||
|
#vt100 .ansi11 { color: #e8e800; }
|
||||||
|
#vt100 .ansi12 { color: #5c5cff; }
|
||||||
|
#vt100 .ansi13 { color: #ff00ff; }
|
||||||
|
#vt100 .ansi14 { color: #00ffff; }
|
||||||
|
#vt100 .ansi15 { color: #ffffff; }
|
||||||
|
|
||||||
|
/* XTERM colors - 256 color mode */
|
||||||
|
#vt100 .ansi16 { color: #000000; }
|
||||||
|
#vt100 .ansi17 { color: #00005f; }
|
||||||
|
#vt100 .ansi18 { color: #000087; }
|
||||||
|
#vt100 .ansi19 { color: #0000af; }
|
||||||
|
#vt100 .ansi20 { color: #0000d7; }
|
||||||
|
#vt100 .ansi21 { color: #0000ff; }
|
||||||
|
#vt100 .ansi22 { color: #005f00; }
|
||||||
|
#vt100 .ansi23 { color: #005f5f; }
|
||||||
|
#vt100 .ansi24 { color: #005f87; }
|
||||||
|
#vt100 .ansi25 { color: #005faf; }
|
||||||
|
#vt100 .ansi26 { color: #005fd7; }
|
||||||
|
#vt100 .ansi27 { color: #005fff; }
|
||||||
|
#vt100 .ansi28 { color: #008700; }
|
||||||
|
#vt100 .ansi29 { color: #00875f; }
|
||||||
|
#vt100 .ansi30 { color: #008787; }
|
||||||
|
#vt100 .ansi31 { color: #0087af; }
|
||||||
|
#vt100 .ansi32 { color: #0087d7; }
|
||||||
|
#vt100 .ansi33 { color: #0087ff; }
|
||||||
|
#vt100 .ansi34 { color: #00af00; }
|
||||||
|
#vt100 .ansi35 { color: #00af5f; }
|
||||||
|
#vt100 .ansi36 { color: #00af87; }
|
||||||
|
#vt100 .ansi37 { color: #00afaf; }
|
||||||
|
#vt100 .ansi38 { color: #00afd7; }
|
||||||
|
#vt100 .ansi39 { color: #00afff; }
|
||||||
|
#vt100 .ansi40 { color: #00d700; }
|
||||||
|
#vt100 .ansi41 { color: #00d75f; }
|
||||||
|
#vt100 .ansi42 { color: #00d787; }
|
||||||
|
#vt100 .ansi43 { color: #00d7af; }
|
||||||
|
#vt100 .ansi44 { color: #00d7d7; }
|
||||||
|
#vt100 .ansi45 { color: #00d7ff; }
|
||||||
|
#vt100 .ansi46 { color: #00ff00; }
|
||||||
|
#vt100 .ansi47 { color: #00ff5f; }
|
||||||
|
#vt100 .ansi48 { color: #00ff87; }
|
||||||
|
#vt100 .ansi49 { color: #00ffaf; }
|
||||||
|
#vt100 .ansi50 { color: #00ffd7; }
|
||||||
|
#vt100 .ansi51 { color: #00ffff; }
|
||||||
|
#vt100 .ansi52 { color: #5f0000; }
|
||||||
|
#vt100 .ansi53 { color: #5f005f; }
|
||||||
|
#vt100 .ansi54 { color: #5f0087; }
|
||||||
|
#vt100 .ansi55 { color: #5f00af; }
|
||||||
|
#vt100 .ansi56 { color: #5f00d7; }
|
||||||
|
#vt100 .ansi57 { color: #5f00ff; }
|
||||||
|
#vt100 .ansi58 { color: #5f5f00; }
|
||||||
|
#vt100 .ansi59 { color: #5f5f5f; }
|
||||||
|
#vt100 .ansi60 { color: #5f5f87; }
|
||||||
|
#vt100 .ansi61 { color: #5f5faf; }
|
||||||
|
#vt100 .ansi62 { color: #5f5fd7; }
|
||||||
|
#vt100 .ansi63 { color: #5f5fff; }
|
||||||
|
#vt100 .ansi64 { color: #5f8700; }
|
||||||
|
#vt100 .ansi65 { color: #5f875f; }
|
||||||
|
#vt100 .ansi66 { color: #5f8787; }
|
||||||
|
#vt100 .ansi67 { color: #5f87af; }
|
||||||
|
#vt100 .ansi68 { color: #5f87d7; }
|
||||||
|
#vt100 .ansi69 { color: #5f87ff; }
|
||||||
|
#vt100 .ansi70 { color: #5faf00; }
|
||||||
|
#vt100 .ansi71 { color: #5faf5f; }
|
||||||
|
#vt100 .ansi72 { color: #5faf87; }
|
||||||
|
#vt100 .ansi73 { color: #5fafaf; }
|
||||||
|
#vt100 .ansi74 { color: #5fafd7; }
|
||||||
|
#vt100 .ansi75 { color: #5fafff; }
|
||||||
|
#vt100 .ansi76 { color: #5fd700; }
|
||||||
|
#vt100 .ansi77 { color: #5fd75f; }
|
||||||
|
#vt100 .ansi78 { color: #5fd787; }
|
||||||
|
#vt100 .ansi79 { color: #5fd7af; }
|
||||||
|
#vt100 .ansi80 { color: #5fd7d7; }
|
||||||
|
#vt100 .ansi81 { color: #5fd7ff; }
|
||||||
|
#vt100 .ansi82 { color: #5fff00; }
|
||||||
|
#vt100 .ansi83 { color: #5fff5f; }
|
||||||
|
#vt100 .ansi84 { color: #5fff87; }
|
||||||
|
#vt100 .ansi85 { color: #5fffaf; }
|
||||||
|
#vt100 .ansi86 { color: #5fffd7; }
|
||||||
|
#vt100 .ansi87 { color: #5fffff; }
|
||||||
|
#vt100 .ansi88 { color: #870000; }
|
||||||
|
#vt100 .ansi89 { color: #87005f; }
|
||||||
|
#vt100 .ansi90 { color: #870087; }
|
||||||
|
#vt100 .ansi91 { color: #8700af; }
|
||||||
|
#vt100 .ansi92 { color: #8700d7; }
|
||||||
|
#vt100 .ansi93 { color: #8700ff; }
|
||||||
|
#vt100 .ansi94 { color: #875f00; }
|
||||||
|
#vt100 .ansi95 { color: #875f5f; }
|
||||||
|
#vt100 .ansi96 { color: #875f87; }
|
||||||
|
#vt100 .ansi97 { color: #875faf; }
|
||||||
|
#vt100 .ansi98 { color: #875fd7; }
|
||||||
|
#vt100 .ansi99 { color: #875fff; }
|
||||||
|
#vt100 .ansi100 { color: #878700; }
|
||||||
|
#vt100 .ansi101 { color: #87875f; }
|
||||||
|
#vt100 .ansi102 { color: #878787; }
|
||||||
|
#vt100 .ansi103 { color: #8787af; }
|
||||||
|
#vt100 .ansi104 { color: #8787d7; }
|
||||||
|
#vt100 .ansi105 { color: #8787ff; }
|
||||||
|
#vt100 .ansi106 { color: #87af00; }
|
||||||
|
#vt100 .ansi107 { color: #87af5f; }
|
||||||
|
#vt100 .ansi108 { color: #87af87; }
|
||||||
|
#vt100 .ansi109 { color: #87afaf; }
|
||||||
|
#vt100 .ansi110 { color: #87afd7; }
|
||||||
|
#vt100 .ansi111 { color: #87afff; }
|
||||||
|
#vt100 .ansi112 { color: #87d700; }
|
||||||
|
#vt100 .ansi113 { color: #87d75f; }
|
||||||
|
#vt100 .ansi114 { color: #87d787; }
|
||||||
|
#vt100 .ansi115 { color: #87d7af; }
|
||||||
|
#vt100 .ansi116 { color: #87d7d7; }
|
||||||
|
#vt100 .ansi117 { color: #87d7ff; }
|
||||||
|
#vt100 .ansi118 { color: #87ff00; }
|
||||||
|
#vt100 .ansi119 { color: #87ff5f; }
|
||||||
|
#vt100 .ansi120 { color: #87ff87; }
|
||||||
|
#vt100 .ansi121 { color: #87ffaf; }
|
||||||
|
#vt100 .ansi122 { color: #87ffd7; }
|
||||||
|
#vt100 .ansi123 { color: #87ffff; }
|
||||||
|
#vt100 .ansi124 { color: #af0000; }
|
||||||
|
#vt100 .ansi125 { color: #af005f; }
|
||||||
|
#vt100 .ansi126 { color: #af0087; }
|
||||||
|
#vt100 .ansi127 { color: #af00af; }
|
||||||
|
#vt100 .ansi128 { color: #af00d7; }
|
||||||
|
#vt100 .ansi129 { color: #af00ff; }
|
||||||
|
#vt100 .ansi130 { color: #af5f00; }
|
||||||
|
#vt100 .ansi131 { color: #af5f5f; }
|
||||||
|
#vt100 .ansi132 { color: #af5f87; }
|
||||||
|
#vt100 .ansi133 { color: #af5faf; }
|
||||||
|
#vt100 .ansi134 { color: #af5fd7; }
|
||||||
|
#vt100 .ansi135 { color: #af5fff; }
|
||||||
|
#vt100 .ansi136 { color: #af8700; }
|
||||||
|
#vt100 .ansi137 { color: #af875f; }
|
||||||
|
#vt100 .ansi138 { color: #af8787; }
|
||||||
|
#vt100 .ansi139 { color: #af87af; }
|
||||||
|
#vt100 .ansi140 { color: #af87d7; }
|
||||||
|
#vt100 .ansi141 { color: #af87ff; }
|
||||||
|
#vt100 .ansi142 { color: #afaf00; }
|
||||||
|
#vt100 .ansi143 { color: #afaf5f; }
|
||||||
|
#vt100 .ansi144 { color: #afaf87; }
|
||||||
|
#vt100 .ansi145 { color: #afafaf; }
|
||||||
|
#vt100 .ansi146 { color: #afafd7; }
|
||||||
|
#vt100 .ansi147 { color: #afafff; }
|
||||||
|
#vt100 .ansi148 { color: #afd700; }
|
||||||
|
#vt100 .ansi149 { color: #afd75f; }
|
||||||
|
#vt100 .ansi150 { color: #afd787; }
|
||||||
|
#vt100 .ansi151 { color: #afd7af; }
|
||||||
|
#vt100 .ansi152 { color: #afd7d7; }
|
||||||
|
#vt100 .ansi153 { color: #afd7ff; }
|
||||||
|
#vt100 .ansi154 { color: #afff00; }
|
||||||
|
#vt100 .ansi155 { color: #afff5f; }
|
||||||
|
#vt100 .ansi156 { color: #afff87; }
|
||||||
|
#vt100 .ansi157 { color: #afffaf; }
|
||||||
|
#vt100 .ansi158 { color: #afffd7; }
|
||||||
|
#vt100 .ansi159 { color: #afffff; }
|
||||||
|
#vt100 .ansi160 { color: #d70000; }
|
||||||
|
#vt100 .ansi161 { color: #d7005f; }
|
||||||
|
#vt100 .ansi162 { color: #d70087; }
|
||||||
|
#vt100 .ansi163 { color: #d700af; }
|
||||||
|
#vt100 .ansi164 { color: #d700d7; }
|
||||||
|
#vt100 .ansi165 { color: #d700ff; }
|
||||||
|
#vt100 .ansi166 { color: #d75f00; }
|
||||||
|
#vt100 .ansi167 { color: #d75f5f; }
|
||||||
|
#vt100 .ansi168 { color: #d75f87; }
|
||||||
|
#vt100 .ansi169 { color: #d75faf; }
|
||||||
|
#vt100 .ansi170 { color: #d75fd7; }
|
||||||
|
#vt100 .ansi171 { color: #d75fff; }
|
||||||
|
#vt100 .ansi172 { color: #d78700; }
|
||||||
|
#vt100 .ansi173 { color: #d7875f; }
|
||||||
|
#vt100 .ansi174 { color: #d78787; }
|
||||||
|
#vt100 .ansi175 { color: #d787af; }
|
||||||
|
#vt100 .ansi176 { color: #d787d7; }
|
||||||
|
#vt100 .ansi177 { color: #d787ff; }
|
||||||
|
#vt100 .ansi178 { color: #d7af00; }
|
||||||
|
#vt100 .ansi179 { color: #d7af5f; }
|
||||||
|
#vt100 .ansi180 { color: #d7af87; }
|
||||||
|
#vt100 .ansi181 { color: #d7afaf; }
|
||||||
|
#vt100 .ansi182 { color: #d7afd7; }
|
||||||
|
#vt100 .ansi183 { color: #d7afff; }
|
||||||
|
#vt100 .ansi184 { color: #d7d700; }
|
||||||
|
#vt100 .ansi185 { color: #d7d75f; }
|
||||||
|
#vt100 .ansi186 { color: #d7d787; }
|
||||||
|
#vt100 .ansi187 { color: #d7d7af; }
|
||||||
|
#vt100 .ansi188 { color: #d7d7d7; }
|
||||||
|
#vt100 .ansi189 { color: #d7d7ff; }
|
||||||
|
#vt100 .ansi190 { color: #d7ff00; }
|
||||||
|
#vt100 .ansi191 { color: #d7ff5f; }
|
||||||
|
#vt100 .ansi192 { color: #d7ff87; }
|
||||||
|
#vt100 .ansi193 { color: #d7ffaf; }
|
||||||
|
#vt100 .ansi194 { color: #d7ffd7; }
|
||||||
|
#vt100 .ansi195 { color: #d7ffff; }
|
||||||
|
#vt100 .ansi196 { color: #ff0000; }
|
||||||
|
#vt100 .ansi197 { color: #ff005f; }
|
||||||
|
#vt100 .ansi198 { color: #ff0087; }
|
||||||
|
#vt100 .ansi199 { color: #ff00af; }
|
||||||
|
#vt100 .ansi200 { color: #ff00d7; }
|
||||||
|
#vt100 .ansi201 { color: #ff00ff; }
|
||||||
|
#vt100 .ansi202 { color: #ff5f00; }
|
||||||
|
#vt100 .ansi203 { color: #ff5f5f; }
|
||||||
|
#vt100 .ansi204 { color: #ff5f87; }
|
||||||
|
#vt100 .ansi205 { color: #ff5faf; }
|
||||||
|
#vt100 .ansi206 { color: #ff5fd7; }
|
||||||
|
#vt100 .ansi207 { color: #ff5fff; }
|
||||||
|
#vt100 .ansi208 { color: #ff8700; }
|
||||||
|
#vt100 .ansi209 { color: #ff875f; }
|
||||||
|
#vt100 .ansi210 { color: #ff8787; }
|
||||||
|
#vt100 .ansi211 { color: #ff87af; }
|
||||||
|
#vt100 .ansi212 { color: #ff87d7; }
|
||||||
|
#vt100 .ansi213 { color: #ff87ff; }
|
||||||
|
#vt100 .ansi214 { color: #ffaf00; }
|
||||||
|
#vt100 .ansi215 { color: #ffaf5f; }
|
||||||
|
#vt100 .ansi216 { color: #ffaf87; }
|
||||||
|
#vt100 .ansi217 { color: #ffafaf; }
|
||||||
|
#vt100 .ansi218 { color: #ffafd7; }
|
||||||
|
#vt100 .ansi219 { color: #ffafff; }
|
||||||
|
#vt100 .ansi220 { color: #ffd700; }
|
||||||
|
#vt100 .ansi221 { color: #ffd75f; }
|
||||||
|
#vt100 .ansi222 { color: #ffd787; }
|
||||||
|
#vt100 .ansi223 { color: #ffd7af; }
|
||||||
|
#vt100 .ansi224 { color: #ffd7d7; }
|
||||||
|
#vt100 .ansi225 { color: #ffd7ff; }
|
||||||
|
#vt100 .ansi226 { color: #ffff00; }
|
||||||
|
#vt100 .ansi227 { color: #ffff5f; }
|
||||||
|
#vt100 .ansi228 { color: #ffff87; }
|
||||||
|
#vt100 .ansi229 { color: #ffffaf; }
|
||||||
|
#vt100 .ansi230 { color: #ffffd7; }
|
||||||
|
#vt100 .ansi231 { color: #ffffff; }
|
||||||
|
#vt100 .ansi232 { color: #080808; }
|
||||||
|
#vt100 .ansi233 { color: #121212; }
|
||||||
|
#vt100 .ansi234 { color: #1c1c1c; }
|
||||||
|
#vt100 .ansi235 { color: #262626; }
|
||||||
|
#vt100 .ansi236 { color: #303030; }
|
||||||
|
#vt100 .ansi237 { color: #3a3a3a; }
|
||||||
|
#vt100 .ansi238 { color: #444444; }
|
||||||
|
#vt100 .ansi239 { color: #4e4e4e; }
|
||||||
|
#vt100 .ansi240 { color: #585858; }
|
||||||
|
#vt100 .ansi241 { color: #626262; }
|
||||||
|
#vt100 .ansi242 { color: #6c6c6c; }
|
||||||
|
#vt100 .ansi243 { color: #767676; }
|
||||||
|
#vt100 .ansi244 { color: #808080; }
|
||||||
|
#vt100 .ansi245 { color: #8a8a8a; }
|
||||||
|
#vt100 .ansi246 { color: #949494; }
|
||||||
|
#vt100 .ansi247 { color: #9e9e9e; }
|
||||||
|
#vt100 .ansi248 { color: #a8a8a8; }
|
||||||
|
#vt100 .ansi249 { color: #b2b2b2; }
|
||||||
|
#vt100 .ansi250 { color: #bcbcbc; }
|
||||||
|
#vt100 .ansi251 { color: #c6c6c6; }
|
||||||
|
#vt100 .ansi252 { color: #d0d0d0; }
|
||||||
|
#vt100 .ansi253 { color: #dadada; }
|
||||||
|
#vt100 .ansi254 { color: #e4e4e4; }
|
||||||
|
#vt100 .ansi255 { color: #eeeeee; }
|
||||||
|
|
||||||
|
/* SYSTEM colors */
|
||||||
|
#vt100 .bgAnsiDef { }
|
||||||
|
#vt100 .bgAnsiDefR { }
|
||||||
|
|
||||||
|
#vt100 .bgAnsi0 { background-color: #000000; }
|
||||||
|
#vt100 .bgAnsi1 { background-color: #cd0000; }
|
||||||
|
#vt100 .bgAnsi2 { background-color: #00cd00; }
|
||||||
|
#vt100 .bgAnsi3 { background-color: #cdcd00; }
|
||||||
|
#vt100 .bgAnsi4 { background-color: #0000ee; }
|
||||||
|
#vt100 .bgAnsi5 { background-color: #cd00cd; }
|
||||||
|
#vt100 .bgAnsi6 { background-color: #00cdcd; }
|
||||||
|
#vt100 .bgAnsi7 { background-color: #e5e5e5; }
|
||||||
|
#vt100 .bgAnsi8 { background-color: #7f7f7f; }
|
||||||
|
#vt100 .bgAnsi9 { background-color: #ff0000; }
|
||||||
|
#vt100 .bgAnsi10 { background-color: #00ff00; }
|
||||||
|
#vt100 .bgAnsi11 { background-color: #e8e800; }
|
||||||
|
#vt100 .bgAnsi12 { background-color: #5c5cff; }
|
||||||
|
#vt100 .bgAnsi13 { background-color: #ff00ff; }
|
||||||
|
#vt100 .bgAnsi14 { background-color: #00ffff; }
|
||||||
|
#vt100 .bgAnsi15 { background-color: #ffffff; }
|
||||||
|
|
||||||
|
/* XTERM colors - 256 color mode */
|
||||||
|
#vt100 .bgAnsi16 { background-color: #000000; }
|
||||||
|
#vt100 .bgAnsi17 { background-color: #00005f; }
|
||||||
|
#vt100 .bgAnsi18 { background-color: #000087; }
|
||||||
|
#vt100 .bgAnsi19 { background-color: #0000af; }
|
||||||
|
#vt100 .bgAnsi20 { background-color: #0000d7; }
|
||||||
|
#vt100 .bgAnsi21 { background-color: #0000ff; }
|
||||||
|
#vt100 .bgAnsi22 { background-color: #005f00; }
|
||||||
|
#vt100 .bgAnsi23 { background-color: #005f5f; }
|
||||||
|
#vt100 .bgAnsi24 { background-color: #005f87; }
|
||||||
|
#vt100 .bgAnsi25 { background-color: #005faf; }
|
||||||
|
#vt100 .bgAnsi26 { background-color: #005fd7; }
|
||||||
|
#vt100 .bgAnsi27 { background-color: #005fff; }
|
||||||
|
#vt100 .bgAnsi28 { background-color: #008700; }
|
||||||
|
#vt100 .bgAnsi29 { background-color: #00875f; }
|
||||||
|
#vt100 .bgAnsi30 { background-color: #008787; }
|
||||||
|
#vt100 .bgAnsi31 { background-color: #0087af; }
|
||||||
|
#vt100 .bgAnsi32 { background-color: #0087d7; }
|
||||||
|
#vt100 .bgAnsi33 { background-color: #0087ff; }
|
||||||
|
#vt100 .bgAnsi34 { background-color: #00af00; }
|
||||||
|
#vt100 .bgAnsi35 { background-color: #00af5f; }
|
||||||
|
#vt100 .bgAnsi36 { background-color: #00af87; }
|
||||||
|
#vt100 .bgAnsi37 { background-color: #00afaf; }
|
||||||
|
#vt100 .bgAnsi38 { background-color: #00afd7; }
|
||||||
|
#vt100 .bgAnsi39 { background-color: #00afff; }
|
||||||
|
#vt100 .bgAnsi40 { background-color: #00d700; }
|
||||||
|
#vt100 .bgAnsi41 { background-color: #00d75f; }
|
||||||
|
#vt100 .bgAnsi42 { background-color: #00d787; }
|
||||||
|
#vt100 .bgAnsi43 { background-color: #00d7af; }
|
||||||
|
#vt100 .bgAnsi44 { background-color: #00d7d7; }
|
||||||
|
#vt100 .bgAnsi45 { background-color: #00d7ff; }
|
||||||
|
#vt100 .bgAnsi46 { background-color: #00ff00; }
|
||||||
|
#vt100 .bgAnsi47 { background-color: #00ff5f; }
|
||||||
|
#vt100 .bgAnsi48 { background-color: #00ff87; }
|
||||||
|
#vt100 .bgAnsi49 { background-color: #00ffaf; }
|
||||||
|
#vt100 .bgAnsi50 { background-color: #00ffd7; }
|
||||||
|
#vt100 .bgAnsi51 { background-color: #00ffff; }
|
||||||
|
#vt100 .bgAnsi52 { background-color: #5f0000; }
|
||||||
|
#vt100 .bgAnsi53 { background-color: #5f005f; }
|
||||||
|
#vt100 .bgAnsi54 { background-color: #5f0087; }
|
||||||
|
#vt100 .bgAnsi55 { background-color: #5f00af; }
|
||||||
|
#vt100 .bgAnsi56 { background-color: #5f00d7; }
|
||||||
|
#vt100 .bgAnsi57 { background-color: #5f00ff; }
|
||||||
|
#vt100 .bgAnsi58 { background-color: #5f5f00; }
|
||||||
|
#vt100 .bgAnsi59 { background-color: #5f5f5f; }
|
||||||
|
#vt100 .bgAnsi60 { background-color: #5f5f87; }
|
||||||
|
#vt100 .bgAnsi61 { background-color: #5f5faf; }
|
||||||
|
#vt100 .bgAnsi62 { background-color: #5f5fd7; }
|
||||||
|
#vt100 .bgAnsi63 { background-color: #5f5fff; }
|
||||||
|
#vt100 .bgAnsi64 { background-color: #5f8700; }
|
||||||
|
#vt100 .bgAnsi65 { background-color: #5f875f; }
|
||||||
|
#vt100 .bgAnsi66 { background-color: #5f8787; }
|
||||||
|
#vt100 .bgAnsi67 { background-color: #5f87af; }
|
||||||
|
#vt100 .bgAnsi68 { background-color: #5f87d7; }
|
||||||
|
#vt100 .bgAnsi69 { background-color: #5f87ff; }
|
||||||
|
#vt100 .bgAnsi70 { background-color: #5faf00; }
|
||||||
|
#vt100 .bgAnsi71 { background-color: #5faf5f; }
|
||||||
|
#vt100 .bgAnsi72 { background-color: #5faf87; }
|
||||||
|
#vt100 .bgAnsi73 { background-color: #5fafaf; }
|
||||||
|
#vt100 .bgAnsi74 { background-color: #5fafd7; }
|
||||||
|
#vt100 .bgAnsi75 { background-color: #5fafff; }
|
||||||
|
#vt100 .bgAnsi76 { background-color: #5fd700; }
|
||||||
|
#vt100 .bgAnsi77 { background-color: #5fd75f; }
|
||||||
|
#vt100 .bgAnsi78 { background-color: #5fd787; }
|
||||||
|
#vt100 .bgAnsi79 { background-color: #5fd7af; }
|
||||||
|
#vt100 .bgAnsi80 { background-color: #5fd7d7; }
|
||||||
|
#vt100 .bgAnsi81 { background-color: #5fd7ff; }
|
||||||
|
#vt100 .bgAnsi82 { background-color: #5fff00; }
|
||||||
|
#vt100 .bgAnsi83 { background-color: #5fff5f; }
|
||||||
|
#vt100 .bgAnsi84 { background-color: #5fff87; }
|
||||||
|
#vt100 .bgAnsi85 { background-color: #5fffaf; }
|
||||||
|
#vt100 .bgAnsi86 { background-color: #5fffd7; }
|
||||||
|
#vt100 .bgAnsi87 { background-color: #5fffff; }
|
||||||
|
#vt100 .bgAnsi88 { background-color: #870000; }
|
||||||
|
#vt100 .bgAnsi89 { background-color: #87005f; }
|
||||||
|
#vt100 .bgAnsi90 { background-color: #870087; }
|
||||||
|
#vt100 .bgAnsi91 { background-color: #8700af; }
|
||||||
|
#vt100 .bgAnsi92 { background-color: #8700d7; }
|
||||||
|
#vt100 .bgAnsi93 { background-color: #8700ff; }
|
||||||
|
#vt100 .bgAnsi94 { background-color: #875f00; }
|
||||||
|
#vt100 .bgAnsi95 { background-color: #875f5f; }
|
||||||
|
#vt100 .bgAnsi96 { background-color: #875f87; }
|
||||||
|
#vt100 .bgAnsi97 { background-color: #875faf; }
|
||||||
|
#vt100 .bgAnsi98 { background-color: #875fd7; }
|
||||||
|
#vt100 .bgAnsi99 { background-color: #875fff; }
|
||||||
|
#vt100 .bgAnsi100 { background-color: #878700; }
|
||||||
|
#vt100 .bgAnsi101 { background-color: #87875f; }
|
||||||
|
#vt100 .bgAnsi102 { background-color: #878787; }
|
||||||
|
#vt100 .bgAnsi103 { background-color: #8787af; }
|
||||||
|
#vt100 .bgAnsi104 { background-color: #8787d7; }
|
||||||
|
#vt100 .bgAnsi105 { background-color: #8787ff; }
|
||||||
|
#vt100 .bgAnsi106 { background-color: #87af00; }
|
||||||
|
#vt100 .bgAnsi107 { background-color: #87af5f; }
|
||||||
|
#vt100 .bgAnsi108 { background-color: #87af87; }
|
||||||
|
#vt100 .bgAnsi109 { background-color: #87afaf; }
|
||||||
|
#vt100 .bgAnsi110 { background-color: #87afd7; }
|
||||||
|
#vt100 .bgAnsi111 { background-color: #87afff; }
|
||||||
|
#vt100 .bgAnsi112 { background-color: #87d700; }
|
||||||
|
#vt100 .bgAnsi113 { background-color: #87d75f; }
|
||||||
|
#vt100 .bgAnsi114 { background-color: #87d787; }
|
||||||
|
#vt100 .bgAnsi115 { background-color: #87d7af; }
|
||||||
|
#vt100 .bgAnsi116 { background-color: #87d7d7; }
|
||||||
|
#vt100 .bgAnsi117 { background-color: #87d7ff; }
|
||||||
|
#vt100 .bgAnsi118 { background-color: #87ff00; }
|
||||||
|
#vt100 .bgAnsi119 { background-color: #87ff5f; }
|
||||||
|
#vt100 .bgAnsi120 { background-color: #87ff87; }
|
||||||
|
#vt100 .bgAnsi121 { background-color: #87ffaf; }
|
||||||
|
#vt100 .bgAnsi122 { background-color: #87ffd7; }
|
||||||
|
#vt100 .bgAnsi123 { background-color: #87ffff; }
|
||||||
|
#vt100 .bgAnsi124 { background-color: #af0000; }
|
||||||
|
#vt100 .bgAnsi125 { background-color: #af005f; }
|
||||||
|
#vt100 .bgAnsi126 { background-color: #af0087; }
|
||||||
|
#vt100 .bgAnsi127 { background-color: #af00af; }
|
||||||
|
#vt100 .bgAnsi128 { background-color: #af00d7; }
|
||||||
|
#vt100 .bgAnsi129 { background-color: #af00ff; }
|
||||||
|
#vt100 .bgAnsi130 { background-color: #af5f00; }
|
||||||
|
#vt100 .bgAnsi131 { background-color: #af5f5f; }
|
||||||
|
#vt100 .bgAnsi132 { background-color: #af5f87; }
|
||||||
|
#vt100 .bgAnsi133 { background-color: #af5faf; }
|
||||||
|
#vt100 .bgAnsi134 { background-color: #af5fd7; }
|
||||||
|
#vt100 .bgAnsi135 { background-color: #af5fff; }
|
||||||
|
#vt100 .bgAnsi136 { background-color: #af8700; }
|
||||||
|
#vt100 .bgAnsi137 { background-color: #af875f; }
|
||||||
|
#vt100 .bgAnsi138 { background-color: #af8787; }
|
||||||
|
#vt100 .bgAnsi139 { background-color: #af87af; }
|
||||||
|
#vt100 .bgAnsi140 { background-color: #af87d7; }
|
||||||
|
#vt100 .bgAnsi141 { background-color: #af87ff; }
|
||||||
|
#vt100 .bgAnsi142 { background-color: #afaf00; }
|
||||||
|
#vt100 .bgAnsi143 { background-color: #afaf5f; }
|
||||||
|
#vt100 .bgAnsi144 { background-color: #afaf87; }
|
||||||
|
#vt100 .bgAnsi145 { background-color: #afafaf; }
|
||||||
|
#vt100 .bgAnsi146 { background-color: #afafd7; }
|
||||||
|
#vt100 .bgAnsi147 { background-color: #afafff; }
|
||||||
|
#vt100 .bgAnsi148 { background-color: #afd700; }
|
||||||
|
#vt100 .bgAnsi149 { background-color: #afd75f; }
|
||||||
|
#vt100 .bgAnsi150 { background-color: #afd787; }
|
||||||
|
#vt100 .bgAnsi151 { background-color: #afd7af; }
|
||||||
|
#vt100 .bgAnsi152 { background-color: #afd7d7; }
|
||||||
|
#vt100 .bgAnsi153 { background-color: #afd7ff; }
|
||||||
|
#vt100 .bgAnsi154 { background-color: #afff00; }
|
||||||
|
#vt100 .bgAnsi155 { background-color: #afff5f; }
|
||||||
|
#vt100 .bgAnsi156 { background-color: #afff87; }
|
||||||
|
#vt100 .bgAnsi157 { background-color: #afffaf; }
|
||||||
|
#vt100 .bgAnsi158 { background-color: #afffd7; }
|
||||||
|
#vt100 .bgAnsi159 { background-color: #afffff; }
|
||||||
|
#vt100 .bgAnsi160 { background-color: #d70000; }
|
||||||
|
#vt100 .bgAnsi161 { background-color: #d7005f; }
|
||||||
|
#vt100 .bgAnsi162 { background-color: #d70087; }
|
||||||
|
#vt100 .bgAnsi163 { background-color: #d700af; }
|
||||||
|
#vt100 .bgAnsi164 { background-color: #d700d7; }
|
||||||
|
#vt100 .bgAnsi165 { background-color: #d700ff; }
|
||||||
|
#vt100 .bgAnsi166 { background-color: #d75f00; }
|
||||||
|
#vt100 .bgAnsi167 { background-color: #d75f5f; }
|
||||||
|
#vt100 .bgAnsi168 { background-color: #d75f87; }
|
||||||
|
#vt100 .bgAnsi169 { background-color: #d75faf; }
|
||||||
|
#vt100 .bgAnsi170 { background-color: #d75fd7; }
|
||||||
|
#vt100 .bgAnsi171 { background-color: #d75fff; }
|
||||||
|
#vt100 .bgAnsi172 { background-color: #d78700; }
|
||||||
|
#vt100 .bgAnsi173 { background-color: #d7875f; }
|
||||||
|
#vt100 .bgAnsi174 { background-color: #d78787; }
|
||||||
|
#vt100 .bgAnsi175 { background-color: #d787af; }
|
||||||
|
#vt100 .bgAnsi176 { background-color: #d787d7; }
|
||||||
|
#vt100 .bgAnsi177 { background-color: #d787ff; }
|
||||||
|
#vt100 .bgAnsi178 { background-color: #d7af00; }
|
||||||
|
#vt100 .bgAnsi179 { background-color: #d7af5f; }
|
||||||
|
#vt100 .bgAnsi180 { background-color: #d7af87; }
|
||||||
|
#vt100 .bgAnsi181 { background-color: #d7afaf; }
|
||||||
|
#vt100 .bgAnsi182 { background-color: #d7afd7; }
|
||||||
|
#vt100 .bgAnsi183 { background-color: #d7afff; }
|
||||||
|
#vt100 .bgAnsi184 { background-color: #d7d700; }
|
||||||
|
#vt100 .bgAnsi185 { background-color: #d7d75f; }
|
||||||
|
#vt100 .bgAnsi186 { background-color: #d7d787; }
|
||||||
|
#vt100 .bgAnsi187 { background-color: #d7d7af; }
|
||||||
|
#vt100 .bgAnsi188 { background-color: #d7d7d7; }
|
||||||
|
#vt100 .bgAnsi189 { background-color: #d7d7ff; }
|
||||||
|
#vt100 .bgAnsi190 { background-color: #d7ff00; }
|
||||||
|
#vt100 .bgAnsi191 { background-color: #d7ff5f; }
|
||||||
|
#vt100 .bgAnsi192 { background-color: #d7ff87; }
|
||||||
|
#vt100 .bgAnsi193 { background-color: #d7ffaf; }
|
||||||
|
#vt100 .bgAnsi194 { background-color: #d7ffd7; }
|
||||||
|
#vt100 .bgAnsi195 { background-color: #d7ffff; }
|
||||||
|
#vt100 .bgAnsi196 { background-color: #ff0000; }
|
||||||
|
#vt100 .bgAnsi197 { background-color: #ff005f; }
|
||||||
|
#vt100 .bgAnsi198 { background-color: #ff0087; }
|
||||||
|
#vt100 .bgAnsi199 { background-color: #ff00af; }
|
||||||
|
#vt100 .bgAnsi200 { background-color: #ff00d7; }
|
||||||
|
#vt100 .bgAnsi201 { background-color: #ff00ff; }
|
||||||
|
#vt100 .bgAnsi202 { background-color: #ff5f00; }
|
||||||
|
#vt100 .bgAnsi203 { background-color: #ff5f5f; }
|
||||||
|
#vt100 .bgAnsi204 { background-color: #ff5f87; }
|
||||||
|
#vt100 .bgAnsi205 { background-color: #ff5faf; }
|
||||||
|
#vt100 .bgAnsi206 { background-color: #ff5fd7; }
|
||||||
|
#vt100 .bgAnsi207 { background-color: #ff5fff; }
|
||||||
|
#vt100 .bgAnsi208 { background-color: #ff8700; }
|
||||||
|
#vt100 .bgAnsi209 { background-color: #ff875f; }
|
||||||
|
#vt100 .bgAnsi210 { background-color: #ff8787; }
|
||||||
|
#vt100 .bgAnsi211 { background-color: #ff87af; }
|
||||||
|
#vt100 .bgAnsi212 { background-color: #ff87d7; }
|
||||||
|
#vt100 .bgAnsi213 { background-color: #ff87ff; }
|
||||||
|
#vt100 .bgAnsi214 { background-color: #ffaf00; }
|
||||||
|
#vt100 .bgAnsi215 { background-color: #ffaf5f; }
|
||||||
|
#vt100 .bgAnsi216 { background-color: #ffaf87; }
|
||||||
|
#vt100 .bgAnsi217 { background-color: #ffafaf; }
|
||||||
|
#vt100 .bgAnsi218 { background-color: #ffafd7; }
|
||||||
|
#vt100 .bgAnsi219 { background-color: #ffafff; }
|
||||||
|
#vt100 .bgAnsi220 { background-color: #ffd700; }
|
||||||
|
#vt100 .bgAnsi221 { background-color: #ffd75f; }
|
||||||
|
#vt100 .bgAnsi222 { background-color: #ffd787; }
|
||||||
|
#vt100 .bgAnsi223 { background-color: #ffd7af; }
|
||||||
|
#vt100 .bgAnsi224 { background-color: #ffd7d7; }
|
||||||
|
#vt100 .bgAnsi225 { background-color: #ffd7ff; }
|
||||||
|
#vt100 .bgAnsi226 { background-color: #ffff00; }
|
||||||
|
#vt100 .bgAnsi227 { background-color: #ffff5f; }
|
||||||
|
#vt100 .bgAnsi228 { background-color: #ffff87; }
|
||||||
|
#vt100 .bgAnsi229 { background-color: #ffffaf; }
|
||||||
|
#vt100 .bgAnsi230 { background-color: #ffffd7; }
|
||||||
|
#vt100 .bgAnsi231 { background-color: #ffffff; }
|
||||||
|
#vt100 .bgAnsi232 { background-color: #080808; }
|
||||||
|
#vt100 .bgAnsi233 { background-color: #121212; }
|
||||||
|
#vt100 .bgAnsi234 { background-color: #1c1c1c; }
|
||||||
|
#vt100 .bgAnsi235 { background-color: #262626; }
|
||||||
|
#vt100 .bgAnsi236 { background-color: #303030; }
|
||||||
|
#vt100 .bgAnsi237 { background-color: #3a3a3a; }
|
||||||
|
#vt100 .bgAnsi238 { background-color: #444444; }
|
||||||
|
#vt100 .bgAnsi239 { background-color: #4e4e4e; }
|
||||||
|
#vt100 .bgAnsi240 { background-color: #585858; }
|
||||||
|
#vt100 .bgAnsi241 { background-color: #626262; }
|
||||||
|
#vt100 .bgAnsi242 { background-color: #6c6c6c; }
|
||||||
|
#vt100 .bgAnsi243 { background-color: #767676; }
|
||||||
|
#vt100 .bgAnsi244 { background-color: #808080; }
|
||||||
|
#vt100 .bgAnsi245 { background-color: #8a8a8a; }
|
||||||
|
#vt100 .bgAnsi246 { background-color: #949494; }
|
||||||
|
#vt100 .bgAnsi247 { background-color: #9e9e9e; }
|
||||||
|
#vt100 .bgAnsi248 { background-color: #a8a8a8; }
|
||||||
|
#vt100 .bgAnsi249 { background-color: #b2b2b2; }
|
||||||
|
#vt100 .bgAnsi250 { background-color: #bcbcbc; }
|
||||||
|
#vt100 .bgAnsi251 { background-color: #c6c6c6; }
|
||||||
|
#vt100 .bgAnsi252 { background-color: #d0d0d0; }
|
||||||
|
#vt100 .bgAnsi253 { background-color: #dadada; }
|
||||||
|
#vt100 .bgAnsi254 { background-color: #e4e4e4; }
|
||||||
|
#vt100 .bgAnsi255 { background-color: #eeeeee; }
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
#vt100 #cursor.bright {
|
||||||
|
background-color: green;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #cursor.dim {
|
||||||
|
background-color: black;
|
||||||
|
opacity: 0.2;
|
||||||
|
-moz-opacity: 0.2;
|
||||||
|
filter: alpha(opacity=20);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable {
|
||||||
|
color: #00ff00;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #00ff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDef {
|
||||||
|
color: #00ff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDefR {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDef {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDefR {
|
||||||
|
background-color: #00ff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDef {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDefR {
|
||||||
|
color: #ffff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDef {
|
||||||
|
background-color: #00ff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
|
@ -0,0 +1,524 @@
|
||||||
|
/* SYSTEM colors */
|
||||||
|
#vt100 .ansiDef { color: inherit; }
|
||||||
|
|
||||||
|
#vt100 .ansi0 { color: inherit; }
|
||||||
|
#vt100 .ansi1 { color: inherit; }
|
||||||
|
#vt100 .ansi2 { color: inherit; }
|
||||||
|
#vt100 .ansi3 { color: inherit; }
|
||||||
|
#vt100 .ansi4 { color: inherit; }
|
||||||
|
#vt100 .ansi5 { color: inherit; }
|
||||||
|
#vt100 .ansi6 { color: inherit; }
|
||||||
|
#vt100 .ansi7 { color: inherit; }
|
||||||
|
#vt100 .ansi8 { color: inherit; }
|
||||||
|
#vt100 .ansi9 { color: inherit; }
|
||||||
|
#vt100 .ansi10 { color: inherit; }
|
||||||
|
#vt100 .ansi11 { color: inherit; }
|
||||||
|
#vt100 .ansi12 { color: inherit; }
|
||||||
|
#vt100 .ansi13 { color: inherit; }
|
||||||
|
#vt100 .ansi14 { color: inherit; }
|
||||||
|
#vt100 .ansi15 { color: inherit; }
|
||||||
|
|
||||||
|
/* XTERM colors - 256 color mode */
|
||||||
|
#vt100 .ansi16 { color: inherit; }
|
||||||
|
#vt100 .ansi17 { color: inherit; }
|
||||||
|
#vt100 .ansi18 { color: inherit; }
|
||||||
|
#vt100 .ansi19 { color: inherit; }
|
||||||
|
#vt100 .ansi20 { color: inherit; }
|
||||||
|
#vt100 .ansi21 { color: inherit; }
|
||||||
|
#vt100 .ansi22 { color: inherit; }
|
||||||
|
#vt100 .ansi23 { color: inherit; }
|
||||||
|
#vt100 .ansi24 { color: inherit; }
|
||||||
|
#vt100 .ansi25 { color: inherit; }
|
||||||
|
#vt100 .ansi26 { color: inherit; }
|
||||||
|
#vt100 .ansi27 { color: inherit; }
|
||||||
|
#vt100 .ansi28 { color: inherit; }
|
||||||
|
#vt100 .ansi29 { color: inherit; }
|
||||||
|
#vt100 .ansi30 { color: inherit; }
|
||||||
|
#vt100 .ansi31 { color: inherit; }
|
||||||
|
#vt100 .ansi32 { color: inherit; }
|
||||||
|
#vt100 .ansi33 { color: inherit; }
|
||||||
|
#vt100 .ansi34 { color: inherit; }
|
||||||
|
#vt100 .ansi35 { color: inherit; }
|
||||||
|
#vt100 .ansi36 { color: inherit; }
|
||||||
|
#vt100 .ansi37 { color: inherit; }
|
||||||
|
#vt100 .ansi38 { color: inherit; }
|
||||||
|
#vt100 .ansi39 { color: inherit; }
|
||||||
|
#vt100 .ansi40 { color: inherit; }
|
||||||
|
#vt100 .ansi41 { color: inherit; }
|
||||||
|
#vt100 .ansi42 { color: inherit; }
|
||||||
|
#vt100 .ansi43 { color: inherit; }
|
||||||
|
#vt100 .ansi44 { color: inherit; }
|
||||||
|
#vt100 .ansi45 { color: inherit; }
|
||||||
|
#vt100 .ansi46 { color: inherit; }
|
||||||
|
#vt100 .ansi47 { color: inherit; }
|
||||||
|
#vt100 .ansi48 { color: inherit; }
|
||||||
|
#vt100 .ansi49 { color: inherit; }
|
||||||
|
#vt100 .ansi50 { color: inherit; }
|
||||||
|
#vt100 .ansi51 { color: inherit; }
|
||||||
|
#vt100 .ansi52 { color: inherit; }
|
||||||
|
#vt100 .ansi53 { color: inherit; }
|
||||||
|
#vt100 .ansi54 { color: inherit; }
|
||||||
|
#vt100 .ansi55 { color: inherit; }
|
||||||
|
#vt100 .ansi56 { color: inherit; }
|
||||||
|
#vt100 .ansi57 { color: inherit; }
|
||||||
|
#vt100 .ansi58 { color: inherit; }
|
||||||
|
#vt100 .ansi59 { color: inherit; }
|
||||||
|
#vt100 .ansi60 { color: inherit; }
|
||||||
|
#vt100 .ansi61 { color: inherit; }
|
||||||
|
#vt100 .ansi62 { color: inherit; }
|
||||||
|
#vt100 .ansi63 { color: inherit; }
|
||||||
|
#vt100 .ansi64 { color: inherit; }
|
||||||
|
#vt100 .ansi65 { color: inherit; }
|
||||||
|
#vt100 .ansi66 { color: inherit; }
|
||||||
|
#vt100 .ansi67 { color: inherit; }
|
||||||
|
#vt100 .ansi68 { color: inherit; }
|
||||||
|
#vt100 .ansi69 { color: inherit; }
|
||||||
|
#vt100 .ansi70 { color: inherit; }
|
||||||
|
#vt100 .ansi71 { color: inherit; }
|
||||||
|
#vt100 .ansi72 { color: inherit; }
|
||||||
|
#vt100 .ansi73 { color: inherit; }
|
||||||
|
#vt100 .ansi74 { color: inherit; }
|
||||||
|
#vt100 .ansi75 { color: inherit; }
|
||||||
|
#vt100 .ansi76 { color: inherit; }
|
||||||
|
#vt100 .ansi77 { color: inherit; }
|
||||||
|
#vt100 .ansi78 { color: inherit; }
|
||||||
|
#vt100 .ansi79 { color: inherit; }
|
||||||
|
#vt100 .ansi80 { color: inherit; }
|
||||||
|
#vt100 .ansi81 { color: inherit; }
|
||||||
|
#vt100 .ansi82 { color: inherit; }
|
||||||
|
#vt100 .ansi83 { color: inherit; }
|
||||||
|
#vt100 .ansi84 { color: inherit; }
|
||||||
|
#vt100 .ansi85 { color: inherit; }
|
||||||
|
#vt100 .ansi86 { color: inherit; }
|
||||||
|
#vt100 .ansi87 { color: inherit; }
|
||||||
|
#vt100 .ansi88 { color: inherit; }
|
||||||
|
#vt100 .ansi89 { color: inherit; }
|
||||||
|
#vt100 .ansi90 { color: inherit; }
|
||||||
|
#vt100 .ansi91 { color: inherit; }
|
||||||
|
#vt100 .ansi92 { color: inherit; }
|
||||||
|
#vt100 .ansi93 { color: inherit; }
|
||||||
|
#vt100 .ansi94 { color: inherit; }
|
||||||
|
#vt100 .ansi95 { color: inherit; }
|
||||||
|
#vt100 .ansi96 { color: inherit; }
|
||||||
|
#vt100 .ansi97 { color: inherit; }
|
||||||
|
#vt100 .ansi98 { color: inherit; }
|
||||||
|
#vt100 .ansi99 { color: inherit; }
|
||||||
|
#vt100 .ansi100 { color: inherit; }
|
||||||
|
#vt100 .ansi101 { color: inherit; }
|
||||||
|
#vt100 .ansi102 { color: inherit; }
|
||||||
|
#vt100 .ansi103 { color: inherit; }
|
||||||
|
#vt100 .ansi104 { color: inherit; }
|
||||||
|
#vt100 .ansi105 { color: inherit; }
|
||||||
|
#vt100 .ansi106 { color: inherit; }
|
||||||
|
#vt100 .ansi107 { color: inherit; }
|
||||||
|
#vt100 .ansi108 { color: inherit; }
|
||||||
|
#vt100 .ansi109 { color: inherit; }
|
||||||
|
#vt100 .ansi110 { color: inherit; }
|
||||||
|
#vt100 .ansi111 { color: inherit; }
|
||||||
|
#vt100 .ansi112 { color: inherit; }
|
||||||
|
#vt100 .ansi113 { color: inherit; }
|
||||||
|
#vt100 .ansi114 { color: inherit; }
|
||||||
|
#vt100 .ansi115 { color: inherit; }
|
||||||
|
#vt100 .ansi116 { color: inherit; }
|
||||||
|
#vt100 .ansi117 { color: inherit; }
|
||||||
|
#vt100 .ansi118 { color: inherit; }
|
||||||
|
#vt100 .ansi119 { color: inherit; }
|
||||||
|
#vt100 .ansi120 { color: inherit; }
|
||||||
|
#vt100 .ansi121 { color: inherit; }
|
||||||
|
#vt100 .ansi122 { color: inherit; }
|
||||||
|
#vt100 .ansi123 { color: inherit; }
|
||||||
|
#vt100 .ansi124 { color: inherit; }
|
||||||
|
#vt100 .ansi125 { color: inherit; }
|
||||||
|
#vt100 .ansi126 { color: inherit; }
|
||||||
|
#vt100 .ansi127 { color: inherit; }
|
||||||
|
#vt100 .ansi128 { color: inherit; }
|
||||||
|
#vt100 .ansi129 { color: inherit; }
|
||||||
|
#vt100 .ansi130 { color: inherit; }
|
||||||
|
#vt100 .ansi131 { color: inherit; }
|
||||||
|
#vt100 .ansi132 { color: inherit; }
|
||||||
|
#vt100 .ansi133 { color: inherit; }
|
||||||
|
#vt100 .ansi134 { color: inherit; }
|
||||||
|
#vt100 .ansi135 { color: inherit; }
|
||||||
|
#vt100 .ansi136 { color: inherit; }
|
||||||
|
#vt100 .ansi137 { color: inherit; }
|
||||||
|
#vt100 .ansi138 { color: inherit; }
|
||||||
|
#vt100 .ansi139 { color: inherit; }
|
||||||
|
#vt100 .ansi140 { color: inherit; }
|
||||||
|
#vt100 .ansi141 { color: inherit; }
|
||||||
|
#vt100 .ansi142 { color: inherit; }
|
||||||
|
#vt100 .ansi143 { color: inherit; }
|
||||||
|
#vt100 .ansi144 { color: inherit; }
|
||||||
|
#vt100 .ansi145 { color: inherit; }
|
||||||
|
#vt100 .ansi146 { color: inherit; }
|
||||||
|
#vt100 .ansi147 { color: inherit; }
|
||||||
|
#vt100 .ansi148 { color: inherit; }
|
||||||
|
#vt100 .ansi149 { color: inherit; }
|
||||||
|
#vt100 .ansi150 { color: inherit; }
|
||||||
|
#vt100 .ansi151 { color: inherit; }
|
||||||
|
#vt100 .ansi152 { color: inherit; }
|
||||||
|
#vt100 .ansi153 { color: inherit; }
|
||||||
|
#vt100 .ansi154 { color: inherit; }
|
||||||
|
#vt100 .ansi155 { color: inherit; }
|
||||||
|
#vt100 .ansi156 { color: inherit; }
|
||||||
|
#vt100 .ansi157 { color: inherit; }
|
||||||
|
#vt100 .ansi158 { color: inherit; }
|
||||||
|
#vt100 .ansi159 { color: inherit; }
|
||||||
|
#vt100 .ansi160 { color: inherit; }
|
||||||
|
#vt100 .ansi161 { color: inherit; }
|
||||||
|
#vt100 .ansi162 { color: inherit; }
|
||||||
|
#vt100 .ansi163 { color: inherit; }
|
||||||
|
#vt100 .ansi164 { color: inherit; }
|
||||||
|
#vt100 .ansi165 { color: inherit; }
|
||||||
|
#vt100 .ansi166 { color: inherit; }
|
||||||
|
#vt100 .ansi167 { color: inherit; }
|
||||||
|
#vt100 .ansi168 { color: inherit; }
|
||||||
|
#vt100 .ansi169 { color: inherit; }
|
||||||
|
#vt100 .ansi170 { color: inherit; }
|
||||||
|
#vt100 .ansi171 { color: inherit; }
|
||||||
|
#vt100 .ansi172 { color: inherit; }
|
||||||
|
#vt100 .ansi173 { color: inherit; }
|
||||||
|
#vt100 .ansi174 { color: inherit; }
|
||||||
|
#vt100 .ansi175 { color: inherit; }
|
||||||
|
#vt100 .ansi176 { color: inherit; }
|
||||||
|
#vt100 .ansi177 { color: inherit; }
|
||||||
|
#vt100 .ansi178 { color: inherit; }
|
||||||
|
#vt100 .ansi179 { color: inherit; }
|
||||||
|
#vt100 .ansi180 { color: inherit; }
|
||||||
|
#vt100 .ansi181 { color: inherit; }
|
||||||
|
#vt100 .ansi182 { color: inherit; }
|
||||||
|
#vt100 .ansi183 { color: inherit; }
|
||||||
|
#vt100 .ansi184 { color: inherit; }
|
||||||
|
#vt100 .ansi185 { color: inherit; }
|
||||||
|
#vt100 .ansi186 { color: inherit; }
|
||||||
|
#vt100 .ansi187 { color: inherit; }
|
||||||
|
#vt100 .ansi188 { color: inherit; }
|
||||||
|
#vt100 .ansi189 { color: inherit; }
|
||||||
|
#vt100 .ansi190 { color: inherit; }
|
||||||
|
#vt100 .ansi191 { color: inherit; }
|
||||||
|
#vt100 .ansi192 { color: inherit; }
|
||||||
|
#vt100 .ansi193 { color: inherit; }
|
||||||
|
#vt100 .ansi194 { color: inherit; }
|
||||||
|
#vt100 .ansi195 { color: inherit; }
|
||||||
|
#vt100 .ansi196 { color: inherit; }
|
||||||
|
#vt100 .ansi197 { color: inherit; }
|
||||||
|
#vt100 .ansi198 { color: inherit; }
|
||||||
|
#vt100 .ansi199 { color: inherit; }
|
||||||
|
#vt100 .ansi200 { color: inherit; }
|
||||||
|
#vt100 .ansi201 { color: inherit; }
|
||||||
|
#vt100 .ansi202 { color: inherit; }
|
||||||
|
#vt100 .ansi203 { color: inherit; }
|
||||||
|
#vt100 .ansi204 { color: inherit; }
|
||||||
|
#vt100 .ansi205 { color: inherit; }
|
||||||
|
#vt100 .ansi206 { color: inherit; }
|
||||||
|
#vt100 .ansi207 { color: inherit; }
|
||||||
|
#vt100 .ansi208 { color: inherit; }
|
||||||
|
#vt100 .ansi209 { color: inherit; }
|
||||||
|
#vt100 .ansi210 { color: inherit; }
|
||||||
|
#vt100 .ansi211 { color: inherit; }
|
||||||
|
#vt100 .ansi212 { color: inherit; }
|
||||||
|
#vt100 .ansi213 { color: inherit; }
|
||||||
|
#vt100 .ansi214 { color: inherit; }
|
||||||
|
#vt100 .ansi215 { color: inherit; }
|
||||||
|
#vt100 .ansi216 { color: inherit; }
|
||||||
|
#vt100 .ansi217 { color: inherit; }
|
||||||
|
#vt100 .ansi218 { color: inherit; }
|
||||||
|
#vt100 .ansi219 { color: inherit; }
|
||||||
|
#vt100 .ansi220 { color: inherit; }
|
||||||
|
#vt100 .ansi221 { color: inherit; }
|
||||||
|
#vt100 .ansi222 { color: inherit; }
|
||||||
|
#vt100 .ansi223 { color: inherit; }
|
||||||
|
#vt100 .ansi224 { color: inherit; }
|
||||||
|
#vt100 .ansi225 { color: inherit; }
|
||||||
|
#vt100 .ansi226 { color: inherit; }
|
||||||
|
#vt100 .ansi227 { color: inherit; }
|
||||||
|
#vt100 .ansi228 { color: inherit; }
|
||||||
|
#vt100 .ansi229 { color: inherit; }
|
||||||
|
#vt100 .ansi230 { color: inherit; }
|
||||||
|
#vt100 .ansi231 { color: inherit; }
|
||||||
|
#vt100 .ansi232 { color: inherit; }
|
||||||
|
#vt100 .ansi233 { color: inherit; }
|
||||||
|
#vt100 .ansi234 { color: inherit; }
|
||||||
|
#vt100 .ansi235 { color: inherit; }
|
||||||
|
#vt100 .ansi236 { color: inherit; }
|
||||||
|
#vt100 .ansi237 { color: inherit; }
|
||||||
|
#vt100 .ansi238 { color: inherit; }
|
||||||
|
#vt100 .ansi239 { color: inherit; }
|
||||||
|
#vt100 .ansi240 { color: inherit; }
|
||||||
|
#vt100 .ansi241 { color: inherit; }
|
||||||
|
#vt100 .ansi242 { color: inherit; }
|
||||||
|
#vt100 .ansi243 { color: inherit; }
|
||||||
|
#vt100 .ansi244 { color: inherit; }
|
||||||
|
#vt100 .ansi245 { color: inherit; }
|
||||||
|
#vt100 .ansi246 { color: inherit; }
|
||||||
|
#vt100 .ansi247 { color: inherit; }
|
||||||
|
#vt100 .ansi248 { color: inherit; }
|
||||||
|
#vt100 .ansi249 { color: inherit; }
|
||||||
|
#vt100 .ansi250 { color: inherit; }
|
||||||
|
#vt100 .ansi251 { color: inherit; }
|
||||||
|
#vt100 .ansi252 { color: inherit; }
|
||||||
|
#vt100 .ansi253 { color: inherit; }
|
||||||
|
#vt100 .ansi254 { color: inherit; }
|
||||||
|
#vt100 .ansi255 { color: inherit; }
|
||||||
|
|
||||||
|
/* SYSTEM colors */
|
||||||
|
#vt100 .bgAnsiDef { background-color: transparent; }
|
||||||
|
|
||||||
|
#vt100 .bgAnsi0 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi1 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi2 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi3 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi4 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi5 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi6 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi7 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi8 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi9 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi10 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi11 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi12 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi13 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi14 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi15 { background-color: transparent; }
|
||||||
|
|
||||||
|
/* XTERM colors - 256 color mode */
|
||||||
|
#vt100 .bgAnsi16 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi17 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi18 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi19 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi20 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi21 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi22 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi23 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi24 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi25 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi26 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi27 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi28 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi29 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi30 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi31 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi32 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi33 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi34 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi35 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi36 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi37 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi38 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi39 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi40 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi41 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi42 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi43 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi44 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi45 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi46 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi47 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi48 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi49 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi50 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi51 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi52 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi53 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi54 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi55 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi56 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi57 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi58 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi59 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi60 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi61 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi62 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi63 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi64 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi65 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi66 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi67 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi68 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi69 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi70 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi71 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi72 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi73 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi74 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi75 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi76 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi77 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi78 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi79 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi80 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi81 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi82 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi83 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi84 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi85 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi86 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi87 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi88 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi89 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi90 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi91 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi92 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi93 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi94 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi95 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi96 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi97 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi98 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi99 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi100 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi101 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi102 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi103 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi104 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi105 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi106 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi107 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi108 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi109 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi110 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi111 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi112 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi113 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi114 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi115 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi116 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi117 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi118 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi119 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi120 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi121 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi122 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi123 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi124 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi125 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi126 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi127 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi128 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi129 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi130 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi131 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi132 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi133 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi134 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi135 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi136 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi137 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi138 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi139 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi140 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi141 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi142 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi143 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi144 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi145 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi146 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi147 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi148 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi149 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi150 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi151 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi152 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi153 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi154 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi155 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi156 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi157 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi158 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi159 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi160 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi161 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi162 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi163 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi164 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi165 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi166 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi167 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi168 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi169 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi170 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi171 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi172 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi173 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi174 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi175 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi176 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi177 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi178 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi179 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi180 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi181 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi182 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi183 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi184 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi185 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi186 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi187 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi188 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi189 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi190 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi191 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi192 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi193 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi194 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi195 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi196 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi197 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi198 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi199 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi200 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi201 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi202 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi203 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi204 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi205 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi206 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi207 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi208 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi209 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi210 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi211 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi212 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi213 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi214 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi215 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi216 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi217 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi218 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi219 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi220 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi221 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi222 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi223 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi224 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi225 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi226 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi227 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi228 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi229 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi230 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi231 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi232 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi233 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi234 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi235 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi236 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi237 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi238 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi239 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi240 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi241 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi242 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi243 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi244 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi245 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi246 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi247 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi248 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi249 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi250 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi251 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi252 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi253 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi254 { background-color: transparent; }
|
||||||
|
#vt100 .bgAnsi255 { background-color: transparent; }
|
||||||
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
#vt100 #cursor.bright {
|
||||||
|
background-color: magenta;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #cursor.dim {
|
||||||
|
background-color: black;
|
||||||
|
opacity: 0.2;
|
||||||
|
-moz-opacity: 0.2;
|
||||||
|
filter: alpha(opacity=20);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable {
|
||||||
|
color: #FFC0CB;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #FFC0CB;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDef {
|
||||||
|
color: #FFC0CB;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDefR {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDef {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDefR {
|
||||||
|
background-color: #FFC0CB;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDef {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDefR {
|
||||||
|
color: #FFC0CB;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDef {
|
||||||
|
background-color: #FFC0CB;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
#vt100 #cursor.bright {
|
||||||
|
background-color: purple;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #cursor.dim {
|
||||||
|
background-color: black;
|
||||||
|
opacity: 0.2;
|
||||||
|
-moz-opacity: 0.2;
|
||||||
|
filter: alpha(opacity=20);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable {
|
||||||
|
color: #ff00ff;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #ff00ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDef {
|
||||||
|
color: #ff00ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDefR {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDef {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDefR {
|
||||||
|
background-color: #ff00ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDef {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDefR {
|
||||||
|
color: #ff00ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDef {
|
||||||
|
background-color: #ff00ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
#vt100 #cursor.bright {
|
||||||
|
background-color: red;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #cursor.dim {
|
||||||
|
background-color: black;
|
||||||
|
opacity: 0.2;
|
||||||
|
-moz-opacity: 0.2;
|
||||||
|
filter: alpha(opacity=20);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable {
|
||||||
|
color: #ff0000;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #ff0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDef {
|
||||||
|
color: #ff0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDefR {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDef {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDefR {
|
||||||
|
background-color: #ff0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDef {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDefR {
|
||||||
|
color: #ff0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDef {
|
||||||
|
background-color: #ff0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
#vt100 #cursor.bright {
|
||||||
|
background-color: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #cursor.dim {
|
||||||
|
background-color: black;
|
||||||
|
opacity: 0.2;
|
||||||
|
-moz-opacity: 0.2;
|
||||||
|
filter: alpha(opacity=20);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDef {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDefR {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDef {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDefR {
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDef {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDefR {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDef {
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
#vt100 #cursor.bright {
|
||||||
|
background-color: yellow;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #cursor.dim {
|
||||||
|
background-color: black;
|
||||||
|
opacity: 0.2;
|
||||||
|
-moz-opacity: 0.2;
|
||||||
|
filter: alpha(opacity=20);
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable {
|
||||||
|
color: #ffff00;
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #ffff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDef {
|
||||||
|
color: #ffff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .ansiDefR {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDef {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 .bgAnsiDefR {
|
||||||
|
background-color: #ffff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDef {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .ansiDefR {
|
||||||
|
color: #ffff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDef {
|
||||||
|
background-color: #ffff00;
|
||||||
|
}
|
||||||
|
|
||||||
|
#vt100 #scrollable.inverted .bgAnsiDefR {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user