Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions sass/partials/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,23 +1,34 @@
// EFFECTS PERCENTAGES
$lighter-percentage: 80%;
$light-percentage: 20%;
$dark-percentage: 17%;
$darker-percentage: 38%;

// GENERIC COLORS
$primary-aquamarine: #000000;
$secondary-aquamarine: #000000;
$primary-blue: #000000;
$secondary-blue: #000000;
$primary-purple: #000000;
$secondary-purple: #000000;
$primary-gray: #000000;
$secondary-gray: #000000;
$tertiary-gray: #000000;
$quaternary-gray: #000000;
$primary-green: #000000;
$secondary-green: #000000;
$primary-red: #000000;
$secondary-red: #000000;
$primary-white: #000000;
$secondary-white: #000000;
$tertiary-white: #000000;
$quaternary-white: #000000;
$primary-black: #000000;
$secondary-black: #000000;
$tertiary-black: #000000;
$quaternary-black: #000000;
$primary-yellow: #000000;
$secondary-yellow: #000000;

// PALETTE COLORS
$primary: $primary-green;
Expand Down
14 changes: 2 additions & 12 deletions sass/partials/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,18 @@ $grid-columns: 12 !default;

// COLUMNS PADDING
$grid-gutter-width: 30px !default;
// Navbar collapse
//** Point at which the navbar becomes uncollapsed.
$grid-float-breakpoint: $screen-sm-min !default;
//** Point at which the navbar begins collapsing.
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;


// Small screen / tablet
// CONTAINER SIZES
$container-tablet: (720px + $grid-gutter-width) !default;
//** For `$screen-sm-min` and up.
$container-sm: $container-tablet !default;

// Medium screen / desktop
$container-desktop: (940px + $grid-gutter-width) !default;
//** For `$screen-md-min` and up.
$container-md: $container-desktop !default;

// Large screen / wide desktop
$container-large-desktop: (1140px + $grid-gutter-width) !default;
//** For `$screen-lg-min` and up.
$container-lg: $container-large-desktop !default;

// SHADOWS
$shadow-depth-0: 0 2px 0 rgba(0,0,0,0.15);
$shadow-depth-1: 0 2px 2px rgba(0,0,0,0.25);
$shadow-depth-2: 0 3px 5px rgba(0,0,0,0.25);
Expand Down