diff --git a/inc/config.php b/inc/config.php
index 2ddbe905..8ddf3bb6 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -873,9 +873,10 @@
// Custom stylesheets available for the user to choose. See the "stylesheets/" folder for a list of
// available stylesheets (or create your own).
$config['stylesheets']['Yotsuba B'] = ''; // Default; there is no additional/custom stylesheet for this.
- $config['stylesheets']['Yotsuba'] = 'yotsuba.css';
- // $config['stylesheets']['Futaba'] = 'futaba.css';
- // $config['stylesheets']['Dark'] = 'dark.css';
+ $config['stylesheets']['Yotsuba'] = 'yotsuba.css';
+ // $config['stylesheets']['Futaba'] = 'futaba.css';
+ // $config['stylesheets']['Dark'] = 'dark.css';
+ $config['stylesheets']['Tomorrow'] = 'tomorrow.css';
// The prefix for each stylesheet URI. Defaults to $config['root']/stylesheets/
// $config['uri_stylesheets'] = 'http://static.example.org/stylesheets/';
@@ -1222,21 +1223,21 @@
$config['capcode'] = ' ## %s';
// "## Custom" becomes lightgreen, italic and bold:
- //$config['custom_capcode']['Custom'] =' ## %s';
+ $config['custom_capcode']['Custom'] =' ## %s';
// "## Mod" makes everything purple, including the name and tripcode:
- //$config['custom_capcode']['Mod'] = array(
- // ' ## %s',
- // 'color:purple', // Change name style; optional
- // 'color:purple' // Change tripcode style; optional
- //);
+ $config['custom_capcode']['Mod'] = array(
+ ' ## %s',
+ 'color:purple', // Change name style; optional
+ 'color:purple' // Change tripcode style; optional
+ );
// "## Admin" makes everything red and bold, including the name and tripcode:
- //$config['custom_capcode']['Admin'] = array(
- // ' ## %s',
- // 'color:red;font-weight:bold', // Change name style; optional
- // 'color:red;font-weight:bold' // Change tripcode style; optional
- //);
+ $config['custom_capcode']['Admin'] = array(
+ ' ## %s',
+ 'color:red;font-weight:bold', // Change name style; optional
+ 'color:red;font-weight:bold' // Change tripcode style; optional
+ );
// Enable the moving of single replies
$config['move_replies'] = false;
diff --git a/stylesheets/tomorrow.css b/stylesheets/tomorrow.css
new file mode 100644
index 00000000..1ddfcd3b
--- /dev/null
+++ b/stylesheets/tomorrow.css
@@ -0,0 +1,152 @@
+/** TOMORROW, I'LL ...
+
+A cool dark skin by 7185.
+https://github.com/7185/8chan-tomorrow/
+
+**/
+body {
+ background:#1d1f21 none;
+ color:#C5C8C6
+}
+h1,div.subtitle {
+ color:#C5C8C6!important
+}
+a:link,a:visited,p.intro a.email span.name {
+ color:#81a2be
+}
+a:link:hover {
+ color:#5F89AC
+}
+a.post_no {
+ color:#C5C8C6
+}
+a.post_no:hover {
+ color:#5F89AC!important
+}
+div.banner {
+ background-color:#1d1f21
+}
+div.post.reply {
+ background-color:#282a2e;
+ border:1px solid #282a2e;
+ margin-bottom:2px;
+ margin-left:16px;
+ margin-top:2px
+}
+div.post.reply.highlighted {
+ background-color:#1d1d21;
+ border:1px solid #111
+}
+div.post.reply div.body a {
+ color:#81a2be
+}
+div.post.reply div.body a:hover {
+ color:#5F89AC
+}
+div.post-hover {
+ border:1px solid #000!important;
+ box-shadow:none!important
+}
+div.thread:hover {
+ background-color:#1d1f21;
+ border-color:#000
+}
+p.intro span.subject {
+ color:#b294bb
+}
+p.intro span.name {
+ color:#C5C8C6
+}
+span.quote {
+ color:#adbd68
+}
+span.heading {
+ color:#F20
+}
+form table tr th {
+ background:#282a2e;
+ border:1px solid #111;
+ color:#C5C8C6
+}
+div.ban h2 {
+ background:#FCA;
+ color:inherit
+}
+div.ban {
+ border-color:#800
+}
+div.ban p {
+ color:#000
+}
+div.pages {
+ background:#1d1f21;
+ border-color:#1d1f21
+}
+div.pages a.selected {
+ color:#81a2be;
+ font-weight:700
+}
+div.boardlist {
+ background-color:#282a2e!important;
+ color:#C5C8C6
+}
+div.boardlist:nth-of-type(1) {
+ border-bottom:1px solid #111!important;
+ box-shadow:0 0 3px 0 #111
+}
+div.boardlist a {
+ color:#81a2be
+}
+hr {
+ background-color:#282a2e;
+ border:0;
+ height:1px
+}
+div#options_div {
+ background-color:#282a2e
+}
+div.options_tab_icon {
+ color: #AAA
+}
+div.options_tab_icon:hover {
+ background-color: #111
+}
+div.options_tab_icon.active {
+ color: #F20
+}
+div.blotter {
+ color:#F20
+}
+span.omitted {
+ color:#707070
+}
+p.intro a, span.omitted a {
+ text-decoration:none
+}
+form#quick-reply {
+ padding-right:1px;
+ border: 1px solid #111
+}
+span.capcode {
+ background-color: #000;
+ padding:2px 5px;
+ border-radius: 10px
+}
+div#watchlist {
+ border:1px solid #111;
+ background-color:#282a2e
+}
+div#watchlist a,a.watchThread {
+ color:#81a2be;
+ text-decoration:none
+}
+div#watchlist a:hover,a.watchThread:hover {
+ color:#5F89AC
+}
+/* Keep small thumbnails */
+a:not([data-expanded="true"]) .post-image{
+ width:auto!important;
+ height:auto!important;
+ max-height:200px!important;
+ max-width:200px!important
+}