Skip to content

Commit

Permalink
Add override test
Browse files Browse the repository at this point in the history
  • Loading branch information
jgthms committed Mar 23, 2020
1 parent 0d74423 commit 4af9686
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions test/sass/override.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
@charset "utf-8";

// Import the variables
@import "../../sass/utilities/initial-variables.sass";

$blue: #00f;

$purple: #8A4D76;
$pink: #FA7C91;
$brown: #757763;
$beige-light: #D0D1CD;
$beige-lighter: #EFF0EB;

$grey-dark: $brown;
$grey-light: $beige-light;
$primary: $purple;
$link: $pink;

$orange: #f60;
$orange-invert: findColorInvert($orange);
$orange-light: hsl(39, 100%, 92%);

$lavender: lavender;
$lavender-invert: white;
$lavender-light: hsl(240, 56%, 98%);
$lavender-dark: hsl(240, 31%, 24%);

$custom-colors: (
"lime": (lime),
"tomato": (tomato, white),
"orange": ($orange, $orange-invert, $orange-light),
"lavender": ($lavender, $lavender-invert, $lavender-light, $lavender-dark)
);

// Import the rest of Bulma
@import "../../bulma";

0 comments on commit 4af9686

Please sign in to comment.