Skip to content

Commit

Permalink
Added color css variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjohnsonaz committed Feb 14, 2019
1 parent 6b7b95f commit ebeb736
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/styl/colors.styl
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,30 @@ $brown-dark ?= darken($brown, $darker);
$brown-light ?= lighten($brown, $lighter);
$orange-dark ?= darken($orange, $darker);
$orange-light ?= lighten($orange, $lighter);

:root {
--color-white: $white;
--color-black: $black;
--color-gray: $gray;
--color-red: $red;
--color-blue: $blue;
--color-yellow: $yellow;
--color-green: $green;
--color-brown: $brown;
--color-orange: $orange;

--color-gray-dark: $gray-dark;
--color-gray-light: $gray-light;
--color-red-dark: $red-dark;
--color-red-light: $red-light;
--color-blue-dark: $blue-dark;
--color-blue-light: $blue-light;
--color-yellow-dark: $yellow-dark;
--color-yellow-light: $yellow-light;
--color-green-dark: $green-dark;
--color-green-light: $green-light;
--color-brown-dark: $brown-dark;
--color-brown-light: $brown-light;
--color-orange-dark: $orange-dark;
--color-orange-light: $orange-light;
}

0 comments on commit ebeb736

Please sign in to comment.