Adjusted the colors and the animations

This commit is contained in:
2018-05-08 08:39:44 +10:00
parent b1d29476c5
commit c183a3bac1
2 changed files with 10 additions and 0 deletions
public/styles/settings

@ -13,6 +13,10 @@ $s-animation--ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
$s-animation--ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
$s-animation--ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
$s-animation--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
$s-animation--ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
$s-animation--ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
$s-animation--ease-in-out: $s-animation--ease-in-out-quart;
$s-animation--ease-in: $s-animation--ease-in-quart;
$s-animation--ease-out: $s-animation--ease-out-quart;

@ -6,6 +6,9 @@
* 1.0.0 - 2018/05/03
*/
/*
== Color Sets ==
*/
//Pastel Colors
$s-color--pastel-pink: #FCE9F1;
$s-color--pastel-green: #E9FCF4;
@ -20,6 +23,9 @@ $s-color--swatch-yellow: #FFFFBA;
$s-color--swatch-green: #BAFFC9;
$s-color--swatch-blue: #BAE1FF;
/*
== Color Definitions ==
*/
//Hyperlink Colors
$s-color--link: #FC78DE;
$s-color--link-hover: lighten($s-color--link, 10%);