mirror of
https://github.com/Xkeeper0/jul.git
synced 2025-08-14 19:55:48 -07:00
cruft
css
errors
ext
images
js
lib
numgfx
schemes
aesucks.php
ccs.php
ccs.phps
comport.php
cuppycakes.php
dailycycle.php
desolation.php
dnss.php
fragmentation2.php
garbg.php
greennight.php
hydras_blue_thing.php
hydras_blue_thing_alt.php
hydras_blue_thing_v2.php
kafuka.php
mariomovie.php
night.php
null.php
pinstripe.php
purple.php
rednight.php
spec-attitude.php
spec-blackhole.php
spec-subcon.php
spec-topsecret.php
spec-trolldra.php
spec-unfiction.php
spec-waffle.php
spec-zen.php
xmas.php
ymar.php
tlayouts
.editorconfig
.gitignore
README.md
acs.php
activeusers.php
activity.php
activity2.php
activity3.php
activity3u.php
admin-editforums.php
admin-editmods.php
admin-slammer.php
admin-threads.php
admin-threads2.php
admin.php
adnonsense.php
announcement.php
avatar.php
biggestposters.php
calendar.php
del.php
doomcounter.php
editpost.php
editprofile.php
editthread.php
edituser.php
faq.php
favicon.ico
forum.php
hex.php
index.php
ipsearch.php
irc.php
latestposts.php
login.php
memberlist.php
milestones.php
newreply.php
newthread.php
numgfx.php
numgfxbig.php
online.php
posticons.dat
postradar.php
postsbyforum.php
postsbythread.php
postsbytime.php
postsbyuser.php
private.php
profile.php
ranks.php
register.php
sendprivate.php
shitbugs.php
shop.php
shoped.php
shoph.php
showprivate.php
sigsize.php
smilies.dat
smilies.php
smilies2.dat
smilies2.php
smilieslol.dat
stats-daily.php
stats.php
status.php
thread.php
78 lines
2.9 KiB
PHP
78 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**************************************************************************
|
|
PROTIP
|
|
|
|
You can leave values commented out to just let the default one take effect.
|
|
|
|
**************************************************************************/
|
|
|
|
$formcss = 1; # Makes form and inputs white on black, set to 0 if you want to custom style them (use css_extra below)
|
|
$numcols = 100; # Width of text entry, just use css extra again
|
|
|
|
# Banner; comment for default
|
|
$boardtitle = '<img src="images/garbg/garbanner.png" title="IT\'S CRAP">';
|
|
|
|
# Page background color, background image, and text color
|
|
$bgcolor = '000810';
|
|
$bgimage = 'images/garbg/garbg.png';
|
|
$textcolor = 'EEEEEE';
|
|
|
|
# Links
|
|
$linkcolor = 'B8DEFE'; # Unvisited link
|
|
$linkcolor2 = '8BA8C0'; # Visited
|
|
$linkcolor3 = 'CCE8FF'; # Active
|
|
$linkcolor4 = 'CCE8FF'; # Hover
|
|
|
|
$tableborder = '000011'; # Border color for tables
|
|
$tableheadtext = '002549'; # Table header text color
|
|
$tableheadbg = '000921'; # Table header background (you can use images)
|
|
$categorybg = '002864'; # Category BG
|
|
$tablebg1 = '001E4B'; # Table cell 1 background
|
|
$tablebg2 = '001638'; # Table cell 2 (the darker one, usually)
|
|
|
|
# Scrollbar colors...
|
|
$scr1 = 'bbccdd'; # top-left outer highlight
|
|
$scr2 = 'bbccdd'; # top-left inner highlight
|
|
$scr3 = 'ffffff'; # middle face
|
|
$scr4 = 'bbccdd'; # bottom-right inner shadow
|
|
$scr5 = 'bbccdd'; # bottom-right outer shadow
|
|
$scr6 = '000000'; # button arrows
|
|
$scr7 = '687786';
|
|
|
|
# Banned Normal Normal+ Moderator Admin
|
|
/*
|
|
$nmcol[0] = array('-1' => '888888', '000066', '333388', '227722', '8E8252', ); # M
|
|
$nmcol[1] = array('-1' => '888888', '662244', '884455', '992277', '6D1F58', ); # F
|
|
$nmcol[2] = array('-1' => '888888', '442266', '554477', '336633', '876D09', ); # N/A
|
|
*/
|
|
|
|
# Images for New Poll, New Thread etc.
|
|
/*
|
|
$newthreadpic = '<img src="images/ccs/newthread.png" align="absmiddle">';
|
|
$newreplypic = '<img src="images/ccs/newreply.png" align="absmiddle">';
|
|
$newpollpic = '<img src="images/ccs/newpoll.png" align="absmiddle">';
|
|
$closedpic = '<img src="images/ccs/threadclosed.png" align="absmiddle">';
|
|
*/
|
|
|
|
# Number graphics (leave these alone unless you know what you're doing)
|
|
/*
|
|
$numdir = 'ccs/'; # /numgfx/<dir>/ for number images
|
|
$numfil = 'numpurple'; # numgfx graphic set
|
|
*/
|
|
|
|
# Status icons for threads, should be self-explanatory
|
|
/*
|
|
$statusicons['new'] = '<img src="images/ccs/new.png">';
|
|
$statusicons['newhot'] = '<img src="images/ccs/newhot.png">';
|
|
$statusicons['newhotoff'] = '<img src="images/ccs/newhotoff.png">';
|
|
$statusicons['hot'] = '<img src="images/ccs/hot.png">';
|
|
$statusicons['hotoff'] = '<img src="images/ccs/hotoff.png">';
|
|
$statusicons['off'] = '<img src="images/ccs/off.png">';
|
|
*/
|
|
|
|
# Extra CSS included at the bottom of a page
|
|
|
|
$css_extra = "
|
|
";
|
|
|