<?php
/**
* GeSHi - Generic Syntax Highlighter
* <pre>
* File: geshi/themes/default/qbasic/qbasic.php
* Author: Nigel McNie
* E-mail: hide@address.com
* </pre>
*
* For information on how to use GeSHi, please consult the documentation
* found in the docs/ directory, or online at http://geshi.org/docs/
*
* This file is part of GeSHi.
*
* GeSHi 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.
*
* GeSHi 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 GeSHi; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* You can view a copy of the GNU GPL in the COPYING file that comes
* with GeSHi, in the docs/ directory.
*
* @package geshi
* @subpackage theme
* @author Nigel McNie <hide@address.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL
* @copyright (C) 2004 - 2006 Nigel McNie
* @version $Id: qbasic.php 716 2006-05-21 06:47:35Z oracleshinoda $
*
*/
/*
* QBasic styles for default theme
*/
$this->setStyle('keyword', 'color:#a1a100;');
$this->setStyle('procedure', 'color: #006;');
$this->setStyle('io', 'color:#2f5;');
$this->setStyle('string', 'color: #933;');
$this->setStyle('draw', 'color: #339;');
$this->setStyle('error', 'color: #444;');
$this->setStyle('comment', 'color:#888;font-style:italic;');
$this->setStyle('num/int', 'color:#11e;');
$this->setStyle('num/dbl', 'color:#fdf;');
$this->setStyle('symbol', 'color:#080;');
?>