update to v1.03

This commit is contained in:
NinCollin 2023-04-21 11:23:51 -05:00 committed by GitHub
parent 357342c6e5
commit 6ebf22cf89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 264 additions and 85 deletions

67
themes/ackblue.php Normal file
View File

@ -0,0 +1,67 @@
<?php
$themesettings = array(
//You can overwrite the default banner with a special one if you choose
"useCustomImageBanner" => false,
"banner" => NULL,
//Most styling should be done through CSS
"styletag" => "
<style>
html * {font-family: veranda;}
.body { background-image: url(\"images/bgack.png\"); }
.header { width: 100%;}
.tableHeader {border: solid 1px #C7E1FF; border-collapse: collapse; width: 100%;}
.tdHeaderBanner {border: solid 1px #C7E1FF; padding:3px; background: #3a506b; text-align: center;}
.tdHeaderLinks1 {background: #33465E;border: solid 1px #C7E1FF; text-align: center;}
.tdHeaderLinks2 {background: #33465E;border: solid 1px #C7E1FF; text-align: center;}
.tdHeaderViewCounter {background: #33465E;border: solid 1px #C7E1FF; text-align: center;}
.tdHeaderTime {background: #33465E;border: solid 1px #C7E1FF; text-align: center;}
.tdHeaderSpacer {background: #33465E;border: solid 1px #C7E1FF; text-align: center; height: 4px}
.content {width: 100%;}
.table {border: solid 1px #C7E1FF; border-collapse: collapse; width: 100%;}
.thRegular {background: #4E6D91; border: solid 1px #C7E1FF;}
.thCategory {background: #4E6D91; border: solid 1px #C7E1FF;}
.tdStyle1 {background: #3a506b;border: solid 1px #C7E1FF;}
.tdStyle2 {background: #33465E;border: solid 1px #C7E1FF;}
.smallText {font-size: 12px}
.footer {text-align: center; font-size: 12px}
</style>
",
//Use only if necessary; CSS for styling is preferred
//Attributes to inject into the <body> tag
"bodyAttributes" => "text=white alink=white vlink=white link=white",
//Attributes to inject into <table> <td> and <th> tags
"tableAttributes" => "",
"thRegularAttributes" => "",
"thCategoryAttributes" => "",
"tdStyle1Attributes" => "",
"tdStyle2Attributes" => "",
//Atributes to inject into the header table tags
"tableHeaderAttributes" => "",
"tdHeaderBannerAttributes" => "",
"tdHeaderLinks1Attributes" => "",
"tdHeaderLinks2Attributes" => "",
"tdHeaderViewCounterAttributes" => "",
"tdHeaderTimeAttributes" => "",
"tdHeaderSpacerAttributes" => "",
//scheme path
"schemePath" => "schemes/default.php"
);
?>

View File

@ -1,24 +1,39 @@
<?php
$themesettings = array(
"useImageBanner" => false,
//You can overwrite the default banner with a special one if you choose
"useCustomImageBanner" => false,
"banner" => NULL,
//Most styling should be done through CSS
"styletag" => "
<style>html * {font-family: monospace;}</style>",
//Use only if necessary; CSS for styling is preferred
//Attributes to inject into the <body> tag
"bodyAttributes" => "bgcolor=#6596f2",
"backgroundColor" => "#6596f2",
"backgroundImage" => NULL,
"useBackgroundImage" => false,
//Attributes to inject into <table> <td> and <th> tags
"tableAttributes" => "border=1 bordercolor=#6596f2",
"thRegularAttributes" => "bgcolor=#dbe7fc",
"thCategoryAttributes" => "bgcolor=#dbe7fc",
"tdStyle1Attributes" => "bgcolor=#dbe7fc",
"tdStyle2Attributes" => "bgcolor=#dbe7fc",
"textColor" => "black",
"tableBorderColor" => "#6596f2",
"tableBackgroundColor" => "#dbe7fc",
"tableBackgroundImage" => NULL,
"useTableBackgroundImage" => false,
"bodyAttributes" => "",
"useAutoBodyAttributes" => true,
"tableAttributes" => "",
"useAutoTableAttributes" => true
//Atributes to inject into the header table tags
"tableHeaderAttributes" => "",
"tdHeaderBannerAttributes" => "",
"tdHeaderLinks1Attributes" => "",
"tdHeaderLinks2Attributes" => "",
"tdHeaderViewCounterAttributes" => "hidden=true",
"tdHeaderTimeAttributes" => "hidden=true",
"tdHeaderSpacerAttributes" => "",
//scheme path
"schemePath" => "schemes/classic.php"
);

View File

@ -1,26 +1,42 @@
<?php
$themesettings = array(
"useImageBanner" => false,
//You can overwrite the default banner with a special one if you choose
"useCustomImageBanner" => false,
"banner" => NULL,
"backgroundColor" => "#C0C0C0",
"backgroundImage" => "images/cornerbg.png",
"useBackgroundImage" => true,
//Most styling should be done through CSS
"styletag" => "
<style>html * {font-family: monospace;}</style>",
//Use only if necessary; CSS for styling is preferred
//Attributes to inject into the <body> tag
"bodyAttributes" => " background=images/cornerbg.png bgcolor=#C0C0C0 link=#3022b1",
"textColor" => "black",
"tableBorderColor" => "#000000",
"tableBackgroundColor" => "#C0C0C0",
"tableBackgroundImage" => NULL,
"useTableBackgroundImage" => false,
"bodyAttributes" => "link=#3022b1",
"useAutoBodyAttributes" => true,
"tableAttributes" => "",
"useAutoTableAttributes" => true
//Attributes to inject into <table> <td> and <th> tags
"tableAttributes" => "border=1 bgcolor=#C0C0C0",
"thRegularAttributes" => "bgcolor=#C0C0C0",
"thCategoryAttributes" => "bgcolor=#C0C0C0",
"tdStyle1Attributes" => "bgcolor=#C0C0C0",
"tdStyle2Attributes" => "bgcolor=#C0C0C0",
//Atributes to inject into the header table tags
"tableHeaderAttributes" => "cellspacing=0 cellpadding=0",
"tdHeaderBannerAttributes" => "",
"tdHeaderLinks1Attributes" => "",
"tdHeaderLinks2Attributes" => "",
"tdHeaderViewCounterAttributes" => "hidden=true",
"tdHeaderTimeAttributes" => "hidden=true",
"tdHeaderSpacerAttributes" => "",
//scheme path
"schemePath" => "schemes/classic.php"
);
?>

View File

@ -32,28 +32,41 @@ else
$NCDbanner = "images/NCDbanner1.png";
}
//Now lets populate our theme array
$themesettings = array(
"useImageBanner" => true,
"banner" => $NCDbanner, //Use banner based on color scheme
"backgroundColor" => "$NCDcolorarray[$NCDindex]", //Use color from array based on time of day
"backgroundImage" => NULL,
"useBackgroundImage" => false,
"textColor" => $NCDtextcolor,
"tableBorderColor" => "#000000",
"tableBackgroundColor" => "$NCDcolorarray[$NCDindex]", //Use color from array based on time of day
"tableBackgroundImage" => NULL,
"useTableBackgroundImage" => false,
//You can overwrite the default banner with a special one if you choose
"useCustomImageBanner" => true,
"banner" => $NCDbanner,
"bodyAttributes" => "",
"useAutoBodyAttributes" => true,
"tableAttributes" => "",
"useAutoTableAttributes" => true
//Most styling should be done through CSS
"styletag" => "
<style>html * {font-family: monospace;}</style>",
//Use only if necessary; CSS for styling is preferred
//Attributes to inject into the <body> tag
"bodyAttributes" => "bgcolor=$NCDcolorarray[$NCDindex] text=$NCDtextcolor",
//Attributes to inject into <table> <td> and <th> tags
"tableAttributes" => "border=1 bgcolor=$NCDcolorarray[$NCDindex]",
"thRegularAttributes" => "bgcolor=$NCDcolorarray[$NCDindex]",
"thCategoryAttributes" => "bgcolor=$NCDcolorarray[$NCDindex]",
"tdStyle1Attributes" => "bgcolor=$NCDcolorarray[$NCDindex]",
"tdStyle2Attributes" => "bgcolor=$NCDcolorarray[$NCDindex]",
//Atributes to inject into the header table tags
"tableHeaderAttributes" => "",
"tdHeaderBannerAttributes" => "",
"tdHeaderLinks1Attributes" => "",
"tdHeaderLinks2Attributes" => "",
"tdHeaderViewCounterAttributes" => "hidden=true",
"tdHeaderTimeAttributes" => "hidden=true",
"tdHeaderSpacerAttributes" => "",
//scheme path
"schemePath" => "schemes/classic.php"
);
?>

View File

@ -25,28 +25,43 @@ else
$NCDbanner = "images/NCDbanner1.png";
}
//Now lets populate our theme array
$themesettings = array(
"useImageBanner" => true,
"banner" => $NCDbanner, //Use banner based on color scheme
"backgroundColor" => "$NCDcolorarray[$NCDindex]", //Use color from array based on time of day
"backgroundImage" => NULL,
"useBackgroundImage" => false,
"textColor" => $NCDtextcolor,
"tableBorderColor" => "#000000",
"tableBackgroundColor" => "$NCDcolorarray[$NCDindex]", //Use color from array based on time of day
"tableBackgroundImage" => NULL,
"useTableBackgroundImage" => false,
"bodyAttributes" => "",
"useAutoBodyAttributes" => true,
"tableAttributes" => "",
"useAutoTableAttributes" => true
$themesettings = array(
//You can overwrite the default banner with a special one if you choose
"useCustomImageBanner" => true,
"banner" => $NCDbanner,
//Most styling should be done through CSS
"styletag" => "
<style>html * {font-family: monospace;}</style>",
//Use only if necessary; CSS for styling is preferred
//Attributes to inject into the <body> tag
"bodyAttributes" => "bgcolor=$NCDcolorarray[$NCDindex] text=$NCDtextcolor",
//Attributes to inject into <table> <td> and <th> tags
"tableAttributes" => "border=1 bgcolor=$NCDcolorarray[$NCDindex]",
"thRegularAttributes" => "bgcolor=$NCDcolorarray[$NCDindex]",
"thCategoryAttributes" => "bgcolor=$NCDcolorarray[$NCDindex]",
"tdStyle1Attributes" => "bgcolor=$NCDcolorarray[$NCDindex]",
"tdStyle2Attributes" => "bgcolor=$NCDcolorarray[$NCDindex]",
//Atributes to inject into the header table tags
"tableHeaderAttributes" => "",
"tdHeaderBannerAttributes" => "",
"tdHeaderLinks1Attributes" => "",
"tdHeaderLinks2Attributes" => "",
"tdHeaderViewCounterAttributes" => "hidden=true",
"tdHeaderTimeAttributes" => "hidden=true",
"tdHeaderSpacerAttributes" => "",
//scheme path
"schemePath" => "schemes/classic.php"
);
?>

41
themes/night.php Normal file
View File

@ -0,0 +1,41 @@
<?php
$themesettings = array(
//You can overwrite the default banner with a special one if you choose
"useCustomImageBanner" => false,
"banner" => NULL,
//Most styling should be done through CSS
"styletag" => "
<style>html * {font-family: monospace;}</style>",
//Use only if necessary; CSS for styling is preferred
//Attributes to inject into the <body> tag
"bodyAttributes" => "bgcolor=#1d3358, background=images/bgR.png text=#c6d5ec vlink=#ffffff link=#ffffff",
//Attributes to inject into <table> <td> and <th> tags
"tableAttributes" => "border=1",
"thRegularAttributes" => "bgcolor=#968cd6 background=\"images/bgR2.png\"",
"thCategoryAttributes" => "bgcolor=#968cd6 background=\"images/bgR2.png\"",
"tdStyle1Attributes" => "bgcolor=#968cd6 background=\"images/bgR2.png\"",
"tdStyle2Attributes" => "bgcolor=#968cd6 background=\"images/bgR2.png\"",
//Atributes to inject into the header table tags
"tableHeaderAttributes" => "",
"tdHeaderBannerAttributes" => "",
"tdHeaderLinks1Attributes" => "",
"tdHeaderLinks2Attributes" => "",
"tdHeaderViewCounterAttributes" => "hidden=true",
"tdHeaderTimeAttributes" => "hidden=true",
"tdHeaderSpacerAttributes" => "",
//scheme path
"schemePath" => "schemes/classic.php"
);
?>

View File

@ -1,26 +1,38 @@
<?php
$themesettings = array(
"useImageBanner" => false,
//You can overwrite the default banner with a special one if you choose
"useCustomImageBanner" => false,
"banner" => NULL,
"backgroundColor" => "#FFFFFF",
"backgroundImage" => NULL,
"useBackgroundImage" => false,
//Most styling should be done through CSS
"styletag" => "
<style>html * {font-family: monospace;}</style>",
//Use only if necessary; CSS for styling is preferred
//Attributes to inject into the <body> tag
"bodyAttributes" => "bgcolor=#FFFFFF",
"textColor" => "black",
"tableBorderColor" => "#000000",
"tableBackgroundColor" => "#FFFFFF",
"tableBackgroundImage" => NULL,
"useTableBackgroundImage" => false,
"bodyAttributes" => "",
"useAutoBodyAttributes" => true,
"tableAttributes" => "",
"useAutoTableAttributes" => true,
"tdAttributes" => ""
//Attributes to inject into <table> <td> and <th> tags
"tableAttributes" => "border=1 bordercolor=#000000",
"thRegularAttributes" => "bgcolor=#FFFFFF",
"thCategoryAttributes" => "bgcolor=#FFFFFF",
"tdStyle1Attributes" => "bgcolor=#FFFFFF",
"tdStyle2Attributes" => "bgcolor=#FFFFFF",
//Atributes to inject into the header table tags
"tableHeaderAttributes" => "",
"tdHeaderBannerAttributes" => "",
"tdHeaderLinks1Attributes" => "",
"tdHeaderLinks2Attributes" => "",
"tdHeaderViewCounterAttributes" => "hidden=true",
"tdHeaderTimeAttributes" => "hidden=true",
"tdHeaderSpacerAttributes" => "",
//scheme path
"schemePath" => "schemes/classic.php"
);
?>