Skip to content

Instantly share code, notes, and snippets.

@crispgm
Last active February 21, 2021 10:48
Show Gist options
  • Save crispgm/17c629a6a7bc81110e4cf28cda0f0115 to your computer and use it in GitHub Desktop.
Save crispgm/17c629a6a7bc81110e4cf28cda0f0115 to your computer and use it in GitHub Desktop.
[UserScripts] Geekhack GMK Botanical Theme on Safari
// ==UserScript==
// @name GeekHack Botanical Theme
// @description A simple Botanical theme for GeekHack
// @author David Zhang
// @match https://geekhack.org/*
// ==/UserScript==
/* GMK Botanical by Hazzy https://geekhack.org/index.php?topic=102350.0 */
:root{
--color-0: #dde5ed;
--color-1: #92aca0;
--color-2: #3e5d58;
}
body{
font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", sans-serif;
background-color: var(--color-0);
color: var(--color-1);
width: 80%;
margin: 0 auto;
}
a:link, a:visited {color: var(--color-2);}
#header {display: none;}
#content_section {background: none;}
#content_section div.frame {background: none;}
#footer_section {background: none;}
#footer_section div.frame {background: none;}
#topic_icons {display: none;}
.plainbox {background: none;}
.whos_viewing {display: none;}
#whoisviewing {display: none;}
.moderatorbar {display: none;}
.navigate_section {padding: .5em .2em;}
.navigate_section ul {border: 0;}
.table_grid thead {display: none;}
.locked_sticky2 {background-color: var(--color-2);}
.stats.stickybg.locked_sticky {background-color: var(--color-2);}
blockquote.bbc_standard_quote {background-color: var(--color-1);}
.windowbg {color: var(--color-1); background-color: var(--color-0);}
.windowbg2 {color: var(--color-1); background-color: var(--color-0);}
.windowbg3 {color: var(--color-1); background-color: var(--color-0);}
.subject a:link {color: var(--color-2); font-weight: bold;}
.subject a:visited {color: var(--color-2); font-weight: bold;}
.subject p a:link {color: var(--color-2);}
.subject p a:visited {color: var(--color-2);}
table.table_grid td {
border-left: 1px solid var(--color-2);
border-bottom: 1px solid var(--color-2);
border-right: 1px solid var(--color-2);
}
.stickybg a:link {color: #D8DEE9; font-weight: bold;}
.stickybg a:visited {color: #D8DEE9; font-weight: bold;}
td.icon1 {display: none;}
td.icon2 {display: none;}
td.subject {width: 75%;}
td.stats {width: 8%;}
td.lastpost {width: 17%;}
td.subject.lockedbg2 a {color: var(--color-1);}
td.subject.lockedbg2 {color: var(--color-1); background-color: var(--color-2);}
td.stats.lockedbg {color: var(--color-1); background-color: var(--color-2);}
td.lastpost.lockedbg2 {color: var(--color-1); background-color: var(--color-2);}
.lastpost img {display: none;}
.windowbg span.topslice {background: none;}
.windowbg span.topslice span {background: none;}
.windowbg span.botslice {background: none;}
.windowbg span.botslice span {background: none;}
.windowbg2 span.topslice {background: none;}
.windowbg2 span.topslice span {background: none;}
.windowbg2 span.botslice {background: none;}
.windowbg2 span.botslice span {background: none;}
#forumposts {border: 1px solid var(--color-2);}
h3.catbg {color: var(--color-2);}
.catbg img {display: none;}
.subject.stickybg.locked_sticky2 > div > a > img,
.subject.windowbg2 > div > a > img {display: none;}
@crispgm
Copy link
Author

crispgm commented Feb 4, 2021

Other themes:

GMK Shoko

:root{
  --color-0: #fffffd;
  --color-1: #99d6ea;
  --color-2: #7a99ac;
}

GMK Nord

:root{
  --color-0: #ECEFF4;
  --color-1: #5E81AC;
  --color-2: #2E3440;
}

GMK Mizu

:root{
  --color-0: #9fc3d4;
  --color-1: #444f58;
  --color-2: #444f58;
}

GMK Demon Sword

:root{
  --color-0: #f1ece1;
  --color-1: #9b2321;
  --color-2: #0f3052;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment