Skip to content

Instantly share code, notes, and snippets.

@imaizume
Last active March 21, 2023 13:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imaizume/106c18ea90b83ba25888aa5842c9ccaf to your computer and use it in GitHub Desktop.
Save imaizume/106c18ea90b83ba25888aa5842c9ccaf to your computer and use it in GitHub Desktop.
Color codes with scss variables for Azusa Colors (http://sanographix.github.io/azusa-colors/)
/* hex */
$blue_hex: #02a8f4;
$red_hex: #ff5152;
$purple_hex: #b867c6;
$orange_hex: #ff9000;
$turquoiz_hex: #01bbd4;
$pink_hex: #ff3f80;
$green_hex: #33b490;
$navy_hex: #464e70;
$ivory_hex: #fff5e3;
/* rgb */
$blue_rgb: rgb(2,168,244);
$red_rgb: rgb(255,81,81);
$purple_rgb: rgb(185,103,199);
$orange_rgb: rgb(255,144,0);
$turquoiz_rgb: rgb(0,187,211);
$pink_rgb: rgb(255,63,128);
$green_rgb: rgb(51,180,144);
$navy_rgb: rgb(70,78,112);
$ivory_rgb: rgb(255,245,227)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment