Skip to content

Instantly share code, notes, and snippets.

View alexgetty's full-sized avatar

Alex Getty alexgetty

View GitHub Profile

Keybase proof

I hereby claim:

  • I am alexgetty on github.
  • I am alexgetty (https://keybase.io/alexgetty) on keybase.
  • I have a public key ASDyIcSkpoqGXWreWiCkyboHoflx2EU9zrncmkCqKlSuuQo

To claim this, I am signing this object:

0x936Ef46690b36d19c67839E21F8fe59562467E4B
@alexgetty
alexgetty / sass-color-maps.scss
Last active June 9, 2017 16:33
A technique for organizing colors using Sass maps and a getter function
// Color Definition
$colors: (
primary: (
light: #67A1E9,
base: #428CE8,
dark: #3478CD
),
status: (
success: #50E39A,
inactive: #B7BCC5,
@alexgetty
alexgetty / Fibonnacci.scss
Last active January 4, 2016 09:29
Find the Nth value of the Fibonacci Sequence in Sass. Exponent function by Scott Kellum (gist.github.com/scottkellum/1160816)
@function exponent($base, $exponent) {
$value: $base;
@if ($exponent > 1) {
@for $i from 2 through $exponent {
$value: $value * $base;
}
}
@if ($exponent < 1){