Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Colors: Adding Chassis palette and default colors #70

Closed
wants to merge 4 commits into from
Closed
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 scss/_utilities/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// ==========================================================================
// Colors
// ==========================================================================


$color-background: $gray-light;
$color-font: $gray-dark;
$color-link: $blue-dark;
$color-button: $blue;
$color-button-text: $gray-light;

// $color-success: $blue;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You might suggest naming these something like $color-alert-yellow.

// $color-error: $yellow;
// $color-warning: $yellow;
13 changes: 13 additions & 0 deletions scss/_utilities/_palette.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// ==========================================================================
// Palette
//
// Including in this file is Chassis' default palette, but feel free
// to replace it with your own!
// ==========================================================================

$gray-dark: #383838;
$gray: #c1c1c1;
$gray-light: #f2f2f2;
$blue-dark: #388695;
$blue: #4fc0c8;
$yellow: #fadf51;
1 change: 1 addition & 0 deletions scss/lint.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
// ==========================================================================

@import
"_utilities/palette",
"_utilities/clearfix",
"_utilities/colors";

Expand Down