FreshySites colors

Colors for FreshySites logo and branding.

by Jon Fuller

HTML

<table>
	<tr class="freshy-dark-green">
		<td>Freshy Dark Green</td>
		<td>#00b140<hr>rgb(0,177,64)</td>
	</tr>
	<tr class="freshy-alt-green">
		<td>Freshy Alt Green</td>
		<td>#78d64b<hr>rgb(120,214,75)</td>
	</tr>
	<tr class="freshy-yellow">
		<td>Freshy Yellow</td>
		<td>#dbe442<hr>rgb(219,228,66)</td>
	</tr>
  <tr class="freshy-grey">
		<td>Freshy Grey</td>
		<td>#3f4444<hr>rgb(63,68,68)</td>
	</tr>
</table>

CSS

html,body {
	margin:0;
	padding:0;
	height: 100%;
	width: 100%;
	font-family: sans-serif;
	font-size: 20px;
	background: black;
}
table { width: 100%; height: 100%; }
td { text-align: center; color: white; text-shadow: 0 1px 1px rgba(0,0,0,0.2); }
td:first-child { font-weight: bold; }
td hr { display: block; border: 0; border-top: 1px solid rgba(255,255,255,0.5); width: 50%;box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2); }

.freshy-dark-green { background-color: #00b140; }
.freshy-alt-green { background-color: #78d64b; }
.freshy-yellow { background-color: #dbe442; }
.freshy-grey { background-color: #3f4444; }