Update defaults to use colours rather than colour vars.

This commit is contained in:
A McIlwraith 2024-07-14 19:21:21 -04:00
parent 7b935d1a85
commit 2f4c21397b

View File

@ -3,9 +3,9 @@
@use "sass:math"; @use "sass:math";
$switch-accent: var(--colour-blue) !default; // switch background when switched right (on/ true) $switch-accent: #2e51a1 !default; // switch background when switched right (on/ true)
$switch-background: var(--colour-grey-xl) !default; // switch background when switched left (off / false) $switch-background: #d8d8d8 !default; // switch background when switched left (off / false)
$switch-color: var(--colour-white) !default; // the colour of the switch $switch-color: white !default; // the colour of the switch
$switch-height: 1.5rem !default; $switch-height: 1.5rem !default;
@mixin switch { @mixin switch {